1234567891011121314151617 |
- <!DOCTYPE html>
- <html lang="en" xmlns:th="http://www.thymeleaf.org" th:replace="base::layout(~{::title}, ~{::main})">
- <head>
- <title>Enactment Error</title>
- </head>
- <body>
- <main>
- <section class="pt-6 pb-6 pl-5 pr-5">
- <h1>Sorry, WEE have weeed and something went wrong </h1>
- <img id="img" class="wee-meme-image" src="../static/img/slip-and-fall.png" th:src="@{/img/slip-and-fall.png}" alt="Logo of person slipping">
- <h2>Let us know about it and we will try to fix ASAP</h2>
- <a href="/"><img src="../static/img/home-button.png" th:src="@{/img/home-button.png}" alt="Home icon"></a>
- </section>
- </main>
- </body>
- </html>
|