62 lines
1.7 KiB
Plaintext
62 lines
1.7 KiB
Plaintext
@{
|
|
ViewData["Title"] = "Participants";
|
|
}
|
|
|
|
<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;
|
|
}
|
|
</style>
|
|
</head>
|
|
<div class="text-center">
|
|
<h2 class="u-text u-text-custom-color-1 u-text-default u-text-1">Список участников</h2>
|
|
</div>
|
|
<section method="post">
|
|
<div class="main">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Id
|
|
</th>
|
|
<th>
|
|
ФИО участниа
|
|
</th>
|
|
<th>
|
|
Номер телефона
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
<div class="general_style">
|
|
<div class="button">
|
|
<a asp-area="" asp-controller="Home" asp-action="CreateParticipant"
|
|
class="btn button_action">Добавить</a>
|
|
</div>
|
|
<div class="button">
|
|
<a asp-area="" asp-controller="Home" asp-action="UpdateParticipant"
|
|
class="btn button_action">Изменить</a>
|
|
</div>
|
|
<div class="button">
|
|
<a asp-area="" asp-controller="Home" asp-action="DeleteParticipant"
|
|
class="btn button_action">Удалить</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|