1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>Spring Security Example</title>
- <link rel="stylesheet" href="/webjars/bootstrap/css/bootstrap.css" th:href="@{/webjars/bootstrap/css/bootstrap.css}" />
- <link rel="stylesheet" href="/assets/css/style.css" th:href="@{/assets/css/style.css}" />
- </head>
- <body>
- <div class="container">
- <div class="row">
- <div class="col-md-8">
- <h2>Access Denied</h2>
- <p>You have denied access.</p>
- </div>
- </div>
- </div>
- </body>
- </html>
|