- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <head th:insert="~{layout :: head}">
- <meta charset="UTF-8">
- </head>
- <body class="d-flex flex-column min-vh-100">
- <nav th:insert="~{login :: top}"></nav>
- <main class="container text-center my-auto">
- <h1 class="display-4">404</h1>
- <p class="lead">A página que você está procurando não foi encontrada.</p>
- <a th:href="@{/}" class="btn btn-dark">Voltar para o início</a>
- </main>
- <footer th:insert="~{layout :: footer}"></footer>
- <div th:insert="~{layout :: script}"></div>
- </body>
- </html>
|