Chatto/chatto/src/main/resources/templates/home.html

19 lines
499 B
HTML
Raw Normal View History

2019-09-17 07:33:38 +00:00
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Title</title>
</head>
<body>
<div>
Web Application. Passed parameter : <span th:text="${message}"></span>
</div>
2019-09-27 06:37:55 +00:00
<!-- <p th:if="${chatUser}" th:text="'username: ' + ${chatUser.userName}">You need to login</p>
2019-09-17 07:33:38 +00:00
<th:block th:each="userName: ${userNames}">
<div th:text="${userName}"></div>
2019-09-27 06:37:55 +00:00
</th:block> -->
<p>Welcome to home page. Please login to access any features.</p>
<a href="login">login</a>
2019-09-17 07:33:38 +00:00
</body>
</html>