Good afternoon, I'm doing a form, for registering and modifying users. When I try to insert a date into the inputs of type="date", no data type is displayed on the screen. These dates I'm using all come from a json that already has them registered. Do you know some kind of solution to this?
<div layout="row" flex>
<md-input-container flex>
<label>Data de Adesao</label>
<input type="date" name="adesao" ng-model="userSettings.userForm.adesaoUserForm ">
</md-input-container>
<md-input-container flex>
<label>Data Vencimento</label>
<input type="date" name="vencimento" ng-model="userSettings.userForm.vencimentoUserForm " >
</md-input-container>
</div>