24 lines
1.0 KiB
Plaintext

@{
ViewData["Title"] = "CreateRepair";
}
<form method="post">
<div class="w-25 container justify-content-center align-items-center">
<div class="form-group py-2">
<label>Название ремонта</label>
<input type="text" id="repairName" placeholder="Введите название ремонта" name="repairName" class="form-control" />
</div>
<div class="form-group py-2">
<label>Стоимость ремонта</label>
<input type="number" min="100" step="100" id="repairPrice" placeholder="Введите стоимость ремонта" name="repairPrice" class="form-control" />
</div>
<br>
<div class="text-center pb-3">
<input type="submit" value="Сохранить" class="btn btn-outline-dark text-center w-100" />
</div>
<div class="text-center">
<input type="submit" value="Назад" class="btn btn-outline-dark text-center w-100" />
</div>
</div>
</form>