jsbin/views/request.html
Aron Carroll 5149bd098e Add request password form
This will probably just be integrated into the main UI but it's
useful for testing. Also added CSRF token to reset form.
2012-06-22 16:09:49 +01:00

16 lines
412 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Request Password Reset</title>
</head>
<body>
<form action="{{action}}" method="post">
<label for="field-email">Email</label>
<input id="field-email" type="email" name="email" />
<input type="hidden" name="_csrf" value="{{csrf}}" />
<button type="submit">Request Reset</button>
</form>
</body>
</html>