29 lines
1017 B
Plaintext
29 lines
1017 B
Plaintext
@{
|
|
ViewData["Title"] = "CreateLunch";
|
|
}
|
|
|
|
<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="lunchName"
|
|
class="form-control" />
|
|
<br>
|
|
<div class="form-group">
|
|
<label class="u-label u-text-custom-color-1 u-label-2">Стоимость обеда</label>
|
|
</div>
|
|
<input type="number"
|
|
placeholder="Введите стоимость обеда"
|
|
name="lunchPrice"
|
|
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> |