mirror of https://github.com/usbharu/Hideout.git
16 lines
341 B
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>
|