I would like to set default time to 12:00 AM on the input box, I have tried all sorts of stuff but its still displaying blank.
.cshtml
<div class="row">
<div class="col-sm-6 mb-5">
<div class="form-group">
<label class="col-sm-3 col-form-label" label-for="Reminder">Time</label>
<div class="col-sm-6">
@Html.TextBoxFor(m => m.Reminder, new { @type = "time", @value = "12:00 AM", @class = "form-control", required = "", @placeholder = "12:00 AM" })
@Html.ValidationMessageFor(m => m.Reminder, "", new { @class = "text-danger error-text" })
</div>
</div>
</div>
</div>

12:00or13:00something like this without AM or PM .. you can take a look at developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time