diff options
author | Alexander Alexeev | 2016-11-22 03:11:22 +0700 |
---|---|---|
committer | Vitaly Takmazov | 2016-11-23 13:03:06 +0300 |
commit | c3e73de64fb28f72cad4f92bc2a82935e4f4b7ee (patch) | |
tree | 9cd926f29ddd159bda9c763b086a4b5f642b850d /juick-spring-www/src/main/webapp/WEB-INF/templates/userNotFound.html | |
parent | 771c27021c033f5b6b9a3d9fdcd4048f9d8023af (diff) |
user not found page, post not found page
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF/templates/userNotFound.html')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/userNotFound.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/userNotFound.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/userNotFound.html new file mode 100644 index 00000000..300b7730 --- /dev/null +++ b/juick-spring-www/src/main/webapp/WEB-INF/templates/userNotFound.html @@ -0,0 +1,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>
\ No newline at end of file |