My problem is how to input date in HTML form in this format 21-01-1999 and not in this format 01-21-1999? When I write this HTML code
<input name = "dPregled" id="dat" type="date" required="required" />
</p>
it gives me mm-dd-yyyy format for input. Also is there a way to automatically take today's date in a form?
I have been researching for an answer everywhere but I can not find it. Thank u so much.