Setting default value of datetime input field is tricky in HTML 5.
If we specify value attribute to "MM/dd/yyyy", it doesn't work so we need to set the default value to "yyyy-MM-dd" like below.
<input type="datetime" name="BirthDate" value="2015-04-12" />.
This brings the BirthDate text box with default value as 12 April 2015.
Hope this helps.
Thanks