UNPKG

884 BHTMLView Raw
1{% extends './layout.html' %}
2
3{% block title %}
4<title>{{__("Reset your password")}}</title>
5{% endblock %}
6
7{% block content %}
8<form action="{{_routes.password_reset}}" method="POST">
9 <input type="hidden" name="_csrf" value="{{_csrf}}">
10 <div class="auth-form-header">
11 <h1>{{__("Reset your password")}}</h1>
12 </div>
13 <div class="auth-form-body">
14 <div class="input-wrap text-muted">
15 {{__("Enter your email address and we will send you a link to reset your password.")}}
16 </div>
17 <div class="input-wrap">
18 <input type="text" name="email" placeholder="{{__("Enter your email address")}}">
19 </div>
20 <div class="input-wrap">
21 <button class="btn btn-primary btn-block">{{__("Send Email")}}</button>
22 </div>
23 {% if messages.error %}
24 <div class="alert alert-danger">{{messages.error}}</div>
25 {% endif %}
26 </div>
27</form>
28{% endblock %}
\No newline at end of file