mirror of
https://github.com/jsbin/jsbin.git
synced 2025-12-08 20:12:59 +00:00
17 lines
481 B
HTML
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>
|