22 lines
959 B
Plaintext
22 lines
959 B
Plaintext
@*
|
|
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
|
*@
|
|
@{
|
|
ViewData["Title"] = "CreateDefect";
|
|
}
|
|
<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="defectType" placeholder="Введите тип неисправности" name="defectType" class="form-control" />
|
|
</div>
|
|
<div class="form-group py-2">
|
|
<label>Цена неисправности</label>
|
|
<input type="number" min="100" step="100" id="defectPrice" placeholder="Введите цену" name="defectPrice" class="form-control" />
|
|
</div>
|
|
<br>
|
|
<div>
|
|
<input type="submit" value="Сохранить" class="btn btn-secondary text-center" />
|
|
</div>
|
|
</div>
|
|
</form> |