I wrote this code to have an input form to get a date value:
<input type="date" name="BIRTHDAY" required="">
The form works fine but I would like to force it (and the little calendar that opens) to be always in english. I'm working in Italy, so the input default shown is "gg/mm/aaaa" rather than "dd/mm/yyyy" and also the calendar shows the name of the months in Italian.
Is there some way to force it to be always in english, regardless the location of the user?
Thanks!