Case_accounting/CaseAccounting/CaseAccountingCustomerView/Views/Lawyers/Create.cshtml

42 lines
1.3 KiB
Plaintext
Raw Normal View History

@{
ViewData["Title"] = "Юрист";
}
<h4 class="fw-bold">Добавление юриста</h4>
<div id="error-div-shell" class="error-div-shell mb-2">
<div>
<p id="error-p" class="error-p"></p>
</div>
</div>
<p class="mb-0">Имя:</p>
<input type="text" id="name-input" name="name" class="form-control mb-3" />
<p class="mb-0">Фамилия:</p>
<input type="text" id="surname-input" name="surname" class="form-control mb-3" />
<p class="mb-0">Отчество:</p>
<input type="text" id="patronymic-input" name="patronymic" class="form-control mb-3" />
<p class="mb-0">Опыт работы:</p>
<input type="number" id="experience-input" name="experience" class="form-control mb-3" />
<div>
<div class="scrollable-table">
<table class="table table-bordered">
<thead class="thead-light">
<tr>
<th>Услуга</th>
<th>Цена</th>
<th>Дата</th>
</tr>
</thead>
<tbody id="scrollable-table__tbody">
</tbody>
</table>
</div>
</div>
<button id="create-button" type="button" class="button-primary text-button">
Создать
</button>
<script src="~/js/Lawyers/lawyer-create.js" asp-append-version="true"></script>