Files
tpjpa/src/main/resources/templates/index.html
Vu Tuan Minh 3f0e3c801c Maybe add thymeleaf?
need to test and add config keycloak
2025-10-22 01:39:18 +02:00

15 lines
307 B
HTML

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Index</title>
</head>
<body>
This is the index page.
<br/>
Logged user: <span th:if="${user} != null" th:text="${user.name}"></span>
<br/>
<a href="/admin">admin</a>
<a href="/logout">logout</a>
</body>