47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
@{
|
|
ViewData["Title"] = "CreateMember";
|
|
}
|
|
|
|
<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-2">Фамилия участника</label>
|
|
</div>
|
|
<input type="text"
|
|
placeholder="Введите фамилию участника"
|
|
name="memberSurname"
|
|
class="form-control" />
|
|
<br>
|
|
<div class="form-group">
|
|
<label class="u-label u-text-custom-color-1 u-label-2">Имя участника</label>
|
|
</div>
|
|
<input type="text"
|
|
placeholder="Введите имя участника"
|
|
name="memberName"
|
|
class="form-control"
|
|
step="1" />
|
|
<br>
|
|
<div class="form-group">
|
|
<label class="u-label u-text-custom-color-1 u-label-2">Отчество участника</label>
|
|
</div>
|
|
<input type="text"
|
|
placeholder="Введите отчество участника"
|
|
name="memberPatronymic"
|
|
class="form-control"
|
|
step="1" />
|
|
<br>
|
|
<div class="form-group">
|
|
<label class="u-label u-text-custom-color-1 u-label-2">Номер телефона участника</label>
|
|
</div>
|
|
<input type="text"
|
|
placeholder="Введите номер телефона участника"
|
|
name="memberPhoneNumber"
|
|
class="form-control"
|
|
step="1" />
|
|
<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> |