30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
@{
|
|
ViewData["Title"] = "CreateMealPlan";
|
|
}
|
|
|
|
<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="mealPlanName"
|
|
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="mealPlanPrice"
|
|
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>
|