2df1099da5
Issue: gh-5558
21 lines
832 B
HTML
21 lines
832 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org">
|
|
<head>
|
|
<title>Login page</title>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" href="/static/css/main.css" th:href="@{/css/main.css}" />
|
|
</head>
|
|
<body>
|
|
<h1>Login page</h1>
|
|
<p>Example user: user / password</p>
|
|
<form th:action="@{/log-in}" method="post">
|
|
<label for="username">Username</label>:
|
|
<input type="text" id="username" name="username" autofocus="autofocus" /> <br />
|
|
<label for="password">Password</label>:
|
|
<input type="password" id="password" name="password" /> <br />
|
|
<input type="submit" value="Log in" />
|
|
</form>
|
|
<p><a href="/" th:href="@{/}">Back to home page</a></p>
|
|
</body>
|
|
</html>
|