41 lines
1.7 KiB
Plaintext
41 lines
1.7 KiB
Plaintext
|
|
|||
|
@{
|
|||
|
ViewData["Title"] = "UpdateRepair";
|
|||
|
}
|
|||
|
|
|||
|
<form method="post">
|
|||
|
<div class="container d-flex justify-content-center align-items-center w-50">
|
|||
|
<div class="card-body ">
|
|||
|
<div class="form-group">
|
|||
|
<label>Ремонт: </label>
|
|||
|
<select id="repair" name="repair" class="form-control"></select>
|
|||
|
</div>
|
|||
|
<div class="form-group">
|
|||
|
<label>Название ремонта</label>
|
|||
|
<input type="text" id="repairName" placeholder="Введите название ремонта" name="repairName" class="form-control" />
|
|||
|
</div>
|
|||
|
<div class="form-group">
|
|||
|
<label>Стоимость ремонта</label>
|
|||
|
<input type="number" min="100" step="100" id="repairPrice" placeholder="Введите стоимость ремонта" name="repairPrice" class="form-control" />
|
|||
|
</div>
|
|||
|
<table class="table">
|
|||
|
<thead>
|
|||
|
<tr>
|
|||
|
<th scope="col">Название запчасти</th>
|
|||
|
<th scope="col">Стоимость запчасти</th>
|
|||
|
</tr>
|
|||
|
</thead>
|
|||
|
<tbody>
|
|||
|
@* тут будет код *@
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
<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>
|
|||
|
</div>
|
|||
|
</form>
|