> ## Documentation Index
> Fetch the complete documentation index at: https://docs.typebot.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Date

The Date input block allows you to ask your user for a date. You can ask for a specific date or range and include time:

<Tabs>
  <Tab title="Flow">
    <Frame>
      <img src="https://mintcdn.com/typebot/_A9p16JCEDI2EkLF/images/blocks/inputs/date-flow.png?fit=max&auto=format&n=_A9p16JCEDI2EkLF&q=85&s=53b9c055f56d0400a1d3451479875da5" alt="Date input in flow" className="rounded-lg" width="1256" height="850" data-path="images/blocks/inputs/date-flow.png" />
    </Frame>
  </Tab>

  <Tab title="Bot">
    <Frame>
      <img src="https://mintcdn.com/typebot/_A9p16JCEDI2EkLF/images/blocks/inputs/date-bot.png?fit=max&auto=format&n=_A9p16JCEDI2EkLF&q=85&s=f639f9dd8c3f51ebb021cab52b2ccea9" alt="Date input in bot" className="rounded-lg" width="852" height="392" data-path="images/blocks/inputs/date-bot.png" />
    </Frame>
  </Tab>
</Tabs>

The input will use the native date picker depending on the device and browser used to answer the bot. For example on Firefox it looks like this:

<Frame style={{ maxWidth: '400px' }}>
  <img src="https://mintcdn.com/typebot/_A9p16JCEDI2EkLF/images/blocks/inputs/date-native-picker.png?fit=max&auto=format&n=_A9p16JCEDI2EkLF&q=85&s=dd66e1ebc963813c37a8396249f82a29" alt="Date native picker" width="840" height="840" data-path="images/blocks/inputs/date-native-picker.png" />
</Frame>

## Format

The `Format` setting lets you customize the picked date format. Under the hood, it is done using the [date-fns](https://date-fns.org/) library. You can use any of the [formatting tokens](https://date-fns.org/docs/format) supported by the library.

Here are some examples:

```text theme={null}
yyyy-MM-dd
yyyy-MM-dd HH:mm:ss
dd/MM/yy
dd/MM/yyyy HH:mm:ss
d.MM.yy
```

There are 4 tokens that cause most of the confusion:

* D and DD that represent the day of a year (1, 2, ..., 365, 366) are often confused with d and dd that represent the day of a month (1, 2, ..., 31).
* YY and YYYY that represent the local week-numbering year (44, 01, 00, 17) are often confused with yy and yyyy that represent the calendar year.

To help with the common confusion, on Typebot by default, we interpret the tokens `D` and `Y` as `d` and `y` respectively.

More information: [https://github.com/date-fns/date-fns/blob/main/docs/unicodeTokens.md](https://github.com/date-fns/date-fns/blob/main/docs/unicodeTokens.md)
