29 lines
1.3 KiB
HTML
29 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{default}">
|
|
|
|
<head>
|
|
<title>Редакторовать пользователя</title>
|
|
</head>
|
|
|
|
<body>
|
|
<main layout:fragment="content">
|
|
<form action="#" th:action="@{/admin/user/edit/{id}(id=${user.id},page=${page})}" th:object="${user}"
|
|
method="post">
|
|
<div class="mb-3">
|
|
<label for="id" class="form-label">ID</label>
|
|
<input type="text" th:value="*{id}" id="id" class="form-control" readonly disabled>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="login" class="form-label">Имя пользователя</label>
|
|
<input type="text" th:field="*{login}" id="login" class="form-control">
|
|
<div th:if="${#fields.hasErrors('login')}" th:errors="*{login}" class="invalid-feedback"></div>
|
|
</div>
|
|
<div class="mb-3 d-flex flex-row">
|
|
<button class="btn btn-secondary me-2 button-fixed-width" type="submit">Сохранить</button>
|
|
<a class="btn btn-secondary button-fixed-width" th:href="@{/admin/user(page=${page})}">Отмена</a>
|
|
</div>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |