I want to create an HTML page which includes a form, where one of it cells should be a date of the format 'mm/yy' with a minimum value of the current month (similar to credit card expiration for example).
How can I do it? I haven't found any option using the date/month types, is there any better option than using text with a matching regex like below?
<input type="text" pattern="\d{2}/\d{2}" required>