Date picker
A date picker helps users select a single date.
Types
Date picker
HTML code snippet
<div class="m-form-field">
<input class="a-text-input"
type="date"
id="datepicker-example"
placeholder="mm/dd/yyyy">
</div>
Accessibility
Inputs should always be paired with a label
for accessibility reasons.
Users of screen readers use the tab key to move focus from one form control to another. Make sure that tab focus order reflects the way you would like users to navigate through the form. Consider whether tabs should move a user down or across the page.