CourseWork_Hotel/Hotel/HotelHeadwaiterApp/Views/Home/DeleteConferenceBooking.cshtml

17 lines
755 B
Plaintext
Raw Normal View History

@{
ViewData["Title"] = "DeleteConferenceBooking";
}
<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="conferenceBooking" name="conferenceBooking" class="form-control" asp-items="@(new SelectList(@ViewBag.ConferenceBookings, "Id", "NameHall"))"></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>