akyuu/templates/signupform.html

11 行
756 B
HTML
Raw 通常表示 履歴

2016-02-09 11:15:04 +09:00
{{ template "header" }}
2016-02-07 01:05:26 +09:00
<h1>sign up</h1>
<form method="POST" action="/signup">
2016-02-09 04:21:47 +09:00
Name: <input type="text" name="name" /> (only up to 140 legal chars: A-Z, a-z, 0-1, _)<br />
2016-02-09 07:36:24 +09:00
Password: <input type="password" name="new_password" /><br />
Password (repeat): <input type="password" name="new_password2" /><br />
E-mail: <input type="text" name="mail" /> (optional; stored internally to reach and/or identify you when there's trouble with your feed, you want to reset your password, etc.; in any such communication, communicating from an address provided here is a necessary condition for you to be treated as the owner of your feed)<br />
<input type="submit" value="create" />
2016-02-07 01:05:26 +09:00
</form>
2016-02-09 11:04:21 +09:00
{{ template "footer" }}