HelloSpringMVC/src/main/resources/templates/secret.html
djmil 6740cb9faf SpringSecurity
- secure endpoint
- login page
- in-memory user credentials
- tests
2023-07-28 11:44:25 +02:00

11 lines
357 B
HTML

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>TOP SECRET</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="'Greetings ' + ${name} + '!'" />
<p th:text="' the seecret you are looking for is [' + ${secret} + ']. Use this knowledge wisely.'" />
</body>
</html>