jsbin/views/request.html
Aron Carroll 67af83123d Greatly improve how redirects are handled. Closes #198
Referrer is now used by default unless a form specifies an alternative.
2012-07-06 22:27:52 +01:00

17 lines
481 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" required />
<input type="hidden" name="_csrf" value="{{csrf}}" />
<input type="hidden" name="_redirect" value="home" />
<button type="submit">Request Reset</button>
</form>
</body>
</html>