12 lines
359 B
HTML
12 lines
359 B
HTML
<html xmlns:th="https://www.thymeleaf.org" xmlns:layout="https://github.com/ultraq/thymeleaf-layout-dialect" layout:decorate="~{layout}">
|
|
<head>
|
|
<title>Secured Content</title>
|
|
</head>
|
|
<body>
|
|
<div layout:fragment="content">
|
|
<h1>Secured Page</h1>
|
|
<p>This page is secured using Spring Boot, Spring Session, and Spring Security.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|