-
Notifications
You must be signed in to change notification settings - Fork 490
Expand file tree
/
Copy pathadd.html
More file actions
22 lines (22 loc) · 828 Bytes
/
add.html
File metadata and controls
22 lines (22 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<link href="/static/styles.css" th:href="@{styles.css}" rel="stylesheet" />
<title>Title</title>
</head>
<body>
<form method="post" th:action="@{/user}">
<label for="username">User Name: </label>
<input type="text" id="username" name="username" th:value="${username}">
<label for="password">Password: </label>
<input type="password" id="password" name="password">
<label for="email">Email: </label>
<input type="email" id="email" name="email" th:value="${email}">
<label for="verify">Please verify password: </label>
<input type="password" id="verify" name="verify">
<input type="submit" value="submit">
<h3 th:if="${error}" th:text="${error}"></h3>
</form>
</body>
</html>