PIbd-21_Kurs_Work_Hotel/Hotel/HotelOrganiserApp/Views/Home/AddParticipantToMealPlan.cshtml

67 lines
1.7 KiB
Plaintext

@{
ViewData["Title"] = "AddParticipantToMealPlan";
}
<head>
<style>
.general_style {
display: flex;
justify-content: space-between;
}
.button_action {
display: flex;
background-color: #5a9ad6;
}
.button_action:hover {
background-color: #225df2;
color: white;
}
.text-center {
margin-bottom: 30px;
}
.ord {
display: flex;
justify-content: center !important;
font-size: 20px;
}
.list-words-add {
margin-top: 30px;
}
</style>
</head>
<div class="text-center">
<h2 class="ord"> Добавить участника в план питания</h2>
</div>
<form method="post">
<div class="form-group">
<label for="room">Выберите план питания</label>
<select id="room" name="room" class="form-control">
</select>
</div>
<div class="form-group">
<label class="list-words-add">Выберите участника</label>
<table class="table">
<thead>
<tr>
<th>ФИО участника</th>
<th>Номер телефона</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<br>
<div class="general_style">
<div class="button">
<button class="btn button_action">Сохранить</button>
</div>
<div class="button">
<a asp-area="" asp-controller="Home" asp-action="MealPlans" class="btn button_action">Назад</a>
</div>
</div>
</form>