17 lines
653 B
Plaintext
Raw Normal View History

2024-03-30 14:49:59 +04:00
@{
ViewData["Title"] = "DeleteLunch";
}
<form method="post">
<div class="text-center">
<h2 class="display-4">Удаление обеда</h2>
</div>
<div class="form-group">
<label class="u-label u-text-custom-color-1 u-label-1">Обеды: </label>
<select id="lunch" name="lunch" class="form-control" asp-items="@(new SelectList(@ViewBag.Lunches, "Id", "LunchName"))"></select>
</div>
<br>
<div class="u-container-layout u-container-layout-2">
<input type="submit" value="Сохранить" class="btn btn-outline-dark text-center d-flex justify-content-md-center" />
</div>
</form>