record-my-ruck/RecordMyRuck/Views/Ruck/New.cshtml

21 lines
668 B
Plaintext
Raw Permalink Normal View History

2024-05-17 04:30:18 +00:00
@model RuckUpload
<h2>Record new ruck</h2>
<div asp-validation-summary="All"></div>
<form method="post" enctype="multipart/form-data">
<div>
<label asp-for="DateTime"></label><input asp-for="DateTime" type="datetime-local" />
</div>
<div>
<label asp-for="Route"></label><input asp-for="Route" type="file" />
</div>
<div>
<label asp-for="WeightPounds"></label><input asp-for="WeightPounds" type="number" />
</div>
<div>
<label asp-for="Notes"></label><textarea asp-for="Notes" placeholder="Type notes here…"></textarea>
</div>
<input type="submit" value="Create" />
</form>