17 lines
408 B
HTML
17 lines
408 B
HTML
|
<!DOCTYPE html>
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
|
||
|
|
||
|
<head>
|
||
|
<title>User managment</title>
|
||
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||
|
<link rel="stylesheet" th:href="@{/styles/styles.css}" />
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>User managment</h1>
|
||
|
<img th:src="@{/images/logo.svg}" />
|
||
|
<br /><a href="/logout">Log out</a>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|