I would like to have HTML input that takes date in "dd.mm" format (for example: 23.03, without a year). Can I achieve that with type="date" maybe?
<input type="text" pattern="[0-9]+" placeholder="dd.mm" required />
Is there any way, to write a pattern, that allows only numbers as input and decimal point prefilled at position 3?
Thanks for any advice :)