I have a attribute call meeting time which is type DateTime.
model looks like this,
[Display(Name = "Meeting Time")]
public DateTime MeetingTime { get; set; }
view look like this
<div class="form-group mt-3">
<label asp-for="MeetingTime"></label>
<input asp-for="MeetingTime" id="MeetingTime" name="MeetingTime" class="form-control" onchange="validateMeetingDate()" />
<span asp-validation-for="MeetingTime" class="text-danger"></span>
<label id="dateError" style="display:none; color:#c90a14;">Start time is earlier than the current time</label>
</div>
in chrome it renders correctly, allowing user to pick date and the time. On Firefox its not showing the date-time picker.
On Firefox its render like this.
Date-picker of this example not working in Firefox. I am having the exact same issue. link


<input>tag that the browser receives.