2023-04-07 13:49:59 +04:00
|
|
|
@{
|
2023-04-07 14:03:51 +04:00
|
|
|
ViewData["Title"] = "BindingRoomAndMealPlan";
|
2023-04-07 13:49:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
<div class="text-center">
|
2023-04-07 14:03:51 +04:00
|
|
|
<h2 class="display-4">Привязка комнаты к плану питания</h2>
|
2023-04-07 13:49:59 +04:00
|
|
|
</div>
|
|
|
|
<form method="post">
|
2023-04-07 14:03:51 +04:00
|
|
|
<label for="validationCustom04" class="form-label">Выбранная комната</label>
|
2023-04-07 13:49:59 +04:00
|
|
|
<select class="form-select" id="validationCustom04" required>
|
|
|
|
<option selected disabled value="">Сделайте выбор</option>
|
|
|
|
<option>Данные из бд*</option>
|
|
|
|
</select>
|
2023-04-07 14:03:51 +04:00
|
|
|
<label for="validationCustom04" class="form-label">Выбранный план питания</label>
|
2023-04-07 13:49:59 +04:00
|
|
|
<select class="form-select" id="validationCustom04" required>
|
|
|
|
<option selected disabled value="">Сделайте выбор</option>
|
|
|
|
<option>Данные из бд*</option>
|
|
|
|
</select>
|
|
|
|
<button type="button" class="btn btn-lg btn-primary" disabled>Привязать</button>
|
|
|
|
<button type="button" class="btn btn-secondary btn-lg" disabled>Отмена</button>
|
|
|
|
</form>
|