21 lines
968 B
HTML
21 lines
968 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" lang="en">
|
|
<head>
|
|
<title>Secured Page</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
|
|
<link href="http://getbootstrap.com/docs/4.0/examples/signin/signin.css" rel="stylesheet" crossorigin="anonymous"/>
|
|
<link rel="stylesheet" href="/css/main.css" th:href="@{/css/main.css}" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div th:replace="index::logout"></div>
|
|
<h2>This is a secured page!</h2>
|
|
<p><a href="/index" th:href="@{/index}">Back to home page</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|