The value attribute of input tag only accepts the YYYY-mm-dd format
<input type="date" value="YYYY-mm-dd">
In my app the user birth date is returned in the format: Jan 1, 1999
If I do this nothing happens:
<input type="date" value="Jan 1, 1999">
So how can I display the user birth date if the format I have is different, maybe write a javascript function that returns the correct format but then the problem is how do you stick that function to an attribute