2023-10-02 02:47:04 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Marinesco</title>
|
2023-10-05 02:55:39 +03:00
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
|
|
<link rel="stylesheet" th:href="@{/styles/styles.css}" />
|
2023-10-02 02:47:04 +03:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-12-29 19:59:49 +03:00
|
|
|
<div th:replace="~{fragments/header :: 'header'}"></div>
|
2023-12-29 21:55:47 +03:00
|
|
|
<div class="container base">
|
|
|
|
<img th:src="@{/images/logo.svg}" />
|
|
|
|
<br /><a href="/login">Login</a>
|
|
|
|
<br /><a href="/profile">/profile</a>
|
|
|
|
<br /><a href="/manage_users">/manage_users</a>
|
|
|
|
<br /><a href="/h2">H2</a>
|
|
|
|
</div>
|
2023-10-02 02:47:04 +03:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|