19 lines
802 B
HTML
19 lines
802 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
<!-- flash messages -->
|
|
<div th:fragment="page-notices">
|
|
<div class="alert alert-danger" th:if="${error}" th:text="${error}"></div>
|
|
<div class="alert alert-danger" th:if="${errors != null && #lists.size(errors) > 0}">
|
|
<ul class="mb-0">
|
|
<li th:each="error: ${errors}" th:text="${error}"></li>
|
|
</ul>
|
|
</div>
|
|
<div class="alert alert-success" th:if="${success}" th:text="${success}"></div>
|
|
<div class="alert alert-warning" th:if="${warning}" th:text="${warning}"></div>
|
|
</div>
|
|
</body>
|
|
</html> |