22 lines
892 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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