Maybe add thymeleaf?

need to test and add config keycloak
This commit is contained in:
Vu Tuan Minh
2025-10-22 01:39:18 +02:00
parent f6250a2724
commit 3f0e3c801c
25 changed files with 323 additions and 413 deletions

View File

@@ -0,0 +1,14 @@
<!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>