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

41 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@{
ViewData["Title"] = "AddConferenceBookingToConference";
}
<head>
<style>
.button_action {
display: flex;
background-color: #5a9ad6;
}
.button_action:hover {
background-color: #225df2;
color: white;
}
.spisok {
margin-bottom: 20px;
}
</style>
</head>
<div class="text-center">
<h2 class="u-text u-text-custom-color-1 u-text-default u-text-1">Привязка конференцию к брони по конференции</h2>
</div>
<form method="post">
<div class="spisok">
<label class="u-label u-text-custom-color-1 u-label-1">Наименование конференции: </label>
<select class="form-control"></select>
</div>
<div class="spisok">
<label class="u-label u-text-custom-color-1 u-label-1">Место конференции: </label>
<select class="form-control"></select>
</div>
<div class="spisok">
<label class="u-label u-text-custom-color-1 u-label-1">Начало: </label>
<input type="datetime-local" placeholder="Выберите дату начала" name="dateСonference" class="form-control" />
</div>
<div class="button">
<button class="btn button_action">Добавить привязку</button>
</div>
</form>