Hideout/src/main/resources/templates/sign_up.html

16 lines
341 B
HTML

<!DOCTYPE html>
<html lang="ja" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>SignUp</title>
</head>
<body>
<form method='post' th:action="@{/api/v1/accounts}">
<input name='username' type='text' value=''>
<input name='password' type='password'>
<input type="submit">
</form>
</body>
</html>