aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/src/main/webapp/WEB-INF/templates/userNotFound.html
blob: 300b77301dea374190dc860d6ba8b63a69b37857 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title th:text="#{error.userNotFound}">Пользователь не найден</title>
    <link rel="stylesheet" type="text/css" href="/style.css" th:href="@{/style.css}"/>
</head>

<body>

<div id="pagetitle">
    <h1 th:text="#{error.userNotFound}">Пользователь не найден</h1>
</div>

<div id="wrapper">
    <p th:text="#{errors.userNotFound.extended(${userName})}">Пользователь не найден.</p>
</div>
<div>
    <a th:href="@{/}" href="/"><span th:text="#{return.toMain}">Вернуться на главную</span></a>
</div>
</body>
</html>