Date input
Use date input to help users enter a memorable date, like their date of birth.
<div class="hs2-form-group">
<fieldset class="hs2-fieldset" aria-describedby="example-hint" role="group">
<legend class="hs2-fieldset__legend hs2-label--l">
<h1 class="hs2-fieldset__heading">
What is your date of birth?
</h1>
</legend>
<div class="hs2-hint" id="example-hint">
For example, 15 3 1984
</div>
<div class="hs2-date-input" id="example">
<div class="hs2-date-input__item">
<div class="hs2-form-group">
<label class="hs2-label hs2-date-input__label" for="example-day">
Day
</label>
<input class="hs2-input hs2-date-input__input hs2-input--width-2" id="example-day" name="example-day" type="text" pattern="[0-9]*" inputmode="numeric">
</div>
</div>
<div class="hs2-date-input__item">
<div class="hs2-form-group">
<label class="hs2-label hs2-date-input__label" for="example-month">
Month
</label>
<input class="hs2-input hs2-date-input__input hs2-input--width-2" id="example-month" name="example-month" type="text" pattern="[0-9]*" inputmode="numeric">
</div>
</div>
<div class="hs2-date-input__item">
<div class="hs2-form-group">
<label class="hs2-label hs2-date-input__label" for="example-year">
Year
</label>
<input class="hs2-input hs2-date-input__input hs2-input--width-4" id="example-year" name="example-year" type="text" pattern="[0-9]*" inputmode="numeric">
</div>
</div>
</div>
</fieldset>
</div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as "Required" in the option description.
If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.
Name | Type | Required | Description |
---|---|---|---|
Name id | Type string | Required false | Description This is used for the main component and to compose id attribute for each item. |
Name namePrefix | Type string | Required false | Description Optional prefix. This is used to prefix each `item.name` using `-`. |
Name items | Type array | Required false | Description An array of input objects with name, value and classes. |
Name items[].id | Type string | Required false | Description Item-specific id. If provided, it will be used instead of the generated id. |
Name items[].name | Type string | Required true | Description Item-specific name attribute. |
Name items[].label | Type string | Required false | Description Item-specific label text. If provided, this will be used instead of `name` for item label text. |
Name items[].value | Type string | Required false | Description If provided, it will be used as the initial value of the input. |
Name hint | Type object | Required false | Description Options for the hint component. |
Name errorMessage | Type object | Required false | Description Options for the error message component. The error message component will not display if you use a falsy value for `errorMessage`, for example `false` or `null`. |
Name fieldset | Type object | Required false | Description Options for the fieldset component (for example legend). |
Name classes | Type string | Required false | Description Classes to add to the date-input container. |
Name attributes | Type object | Required false | Description HTML attributes (for example data attributes) to add to the date-input container. |
{% from 'date-input/macro.njk' import dateInput %}
{{ dateInput({
"id": "example",
"namePrefix": "example",
"fieldset": {
"legend": {
"text": "What is your date of birth?",
"classes": "hs2-label--l",
"isPageHeading": true
}
},
"hint": {
"text": "For example, 15 3 1984"
},
"items": [
{
"name": "day",
"classes": "hs2-input--width-2"
},
{
"name": "month",
"classes": "hs2-input--width-2"
},
{
"name": "year",
"classes": "hs2-input--width-4"
}
]
}) }}
When to use date input
We follow the GOV.UK Design System. Use date input when you’re asking users for a date they already know.
When not to use date input
Do not use date input if users are unlikely to know the exact date you're asking about.
How to use date input
Date input consists of 3 fields to let users enter a day, month and year.
Group the 3 date fields together in a <fieldset>
with a <legend>
that describes them. You can see an example at the top of this page. The legend is usually a question, like "What is your date of birth?".
Read more on the GOV.UK Design System about how to ask users for dates and making labels and legends headings.
Error messages
Style error messages like this:
<div class="hs2-form-group hs2-form-group--error">
<fieldset class="hs2-fieldset" aria-describedby="dob-errors-hint dob-errors-error" role="group">
<legend class="hs2-fieldset__legend hs2-label--l">
<h1 class="hs2-fieldset__heading">
What is your date of birth?
</h1>
</legend>
<div class="hs2-hint" id="dob-errors-hint">
For example, 15 3 1984
</div>
<span class="hs2-error-message" id="dob-errors-error">
<span class="hs2-u-visually-hidden">Error:</span> Enter your date of birth
</span>
<div class="hs2-date-input" id="dob-errors">
<div class="hs2-date-input__item">
<div class="hs2-form-group">
<label class="hs2-label hs2-date-input__label" for="dob-errors-day">
Day
</label>
<input class="hs2-input hs2-date-input__input hs2-input--width-2 hs2-input--error" id="dob-errors-day" name="day" type="text" pattern="[0-9]*" inputmode="numeric">
</div>
</div>
<div class="hs2-date-input__item">
<div class="hs2-form-group">
<label class="hs2-label hs2-date-input__label" for="dob-errors-month">
Month
</label>
<input class="hs2-input hs2-date-input__input hs2-input--width-2 hs2-input--error" id="dob-errors-month" name="month" type="text" pattern="[0-9]*" inputmode="numeric">
</div>
</div>
<div class="hs2-date-input__item">
<div class="hs2-form-group">
<label class="hs2-label hs2-date-input__label" for="dob-errors-year">
Year
</label>
<input class="hs2-input hs2-date-input__input hs2-input--width-4 hs2-input--error" id="dob-errors-year" name="year" type="text" pattern="[0-9]*" inputmode="numeric">
</div>
</div>
</div>
</fieldset>
</div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as "Required" in the option description.
If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.
Name | Type | Required | Description |
---|---|---|---|
Name id | Type string | Required false | Description This is used for the main component and to compose id attribute for each item. |
Name namePrefix | Type string | Required false | Description Optional prefix. This is used to prefix each `item.name` using `-`. |
Name items | Type array | Required false | Description An array of input objects with name, value and classes. |
Name items[].id | Type string | Required false | Description Item-specific id. If provided, it will be used instead of the generated id. |
Name items[].name | Type string | Required true | Description Item-specific name attribute. |
Name items[].label | Type string | Required false | Description Item-specific label text. If provided, this will be used instead of `name` for item label text. |
Name items[].value | Type string | Required false | Description If provided, it will be used as the initial value of the input. |
Name hint | Type object | Required false | Description Options for the hint component. |
Name errorMessage | Type object | Required false | Description Options for the error message component. The error message component will not display if you use a falsy value for `errorMessage`, for example `false` or `null`. |
Name fieldset | Type object | Required false | Description Options for the fieldset component (for example legend). |
Name classes | Type string | Required false | Description Classes to add to the date-input container. |
Name attributes | Type object | Required false | Description HTML attributes (for example data attributes) to add to the date-input container. |
{% from 'date-input/macro.njk' import dateInput %}
{{ dateInput({
"id": "dob-errors",
"fieldset": {
"legend": {
"text": "What is your date of birth?",
"classes": "hs2-label--l",
"isPageHeading": true
}
},
"hint": {
"text": "For example, 15 3 1984"
},
"errorMessage": {
"text": "Enter your date of birth"
},
"items": [
{
"name": "day",
"classes": "hs2-input--width-2 hs2-input--error"
},
{
"name": "month",
"classes": "hs2-input--width-2 hs2-input--error"
},
{
"name": "year",
"classes": "hs2-input--width-4 hs2-input--error"
}
]
}) }}
Follow: