akyuu/templates/accountform.html

13 行
529 B
HTML

{{ template "header" }}
<h1>edit account</h1>
<form method="POST" action="/account">
E-mail: <input type="text" name="mail" /><br />
New password: <input type="password" name="new_password" /><br />
New password (repeat): <input type="password" name="new_password2" /><br />
<br />
Name: <input type="text" name="name" /><br />
Old password: <input type="password" name="password" /><br />
<input type="submit" value="update" />
</form>
{{ template "footer" }}