marinesco/src/main/resources/templates/registration.html

26 lines
916 B
HTML
Raw Normal View History

2023-10-02 02:42:32 +03:00
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
<title>Marinesco - registration form</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:42:32 +03:00
</head>
<body>
<h1>Register</h1>
2023-10-05 02:55:39 +03:00
<img th:src="@{/images/logo.svg}" />
2023-10-02 02:42:32 +03:00
<form method="POST" th:action="@{/register}" id="registerForm">
<label for="username">Username: </label>
2023-10-05 02:55:39 +03:00
<input type="text" name="login" /><br />
2023-10-02 02:42:32 +03:00
<label for="password">Password: </label>
2023-10-05 02:55:39 +03:00
<input type="password" name="pwd" /><br />
2023-10-02 02:42:32 +03:00
<label for="confirm">Confirm password: </label>
<input type="password" name="confirm" /><br />
<label for="displayname">Displayed name: </label>
<input type="text" name="fullname" /><br />
2023-10-05 02:55:39 +03:00
<input type="submit" value="Register" />
2023-10-02 02:42:32 +03:00
</form>
</body>
</html>