marinesco/target/classes/templates/root.html
2023-12-28 20:53:55 +03:00

20 lines
546 B
HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
<title>Marinesco</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" th:href="@{/styles/styles.css}" />
</head>
<body>
<h1>Welcome to Marinesco</h1>
<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 />
<br /><a href="/logout">Log out</a>
</body>
</html>