blob: c6e98c2089b1a95077087e2c21a51ac974e6944f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{% set title = __("Reset password") %}
{% set formId = "pwreset" %}
{% set formError = getAndClearFormError(formId) %}
{% extends "base.twig" %}
{% block content %}
<hr color="silver" noshade>
<h1>{{ __("Reset password") }}</h1>
{% if formError %}
{% include "components/alert_error.twig" with { message: formError } %}
{% endif %}
<form action="{{ g.server.REQUEST_URI }}" method="post">
<input type="hidden" name="form_id" value="{{ formId }}">
<label for="i_email">{{ __("Email address:") }}</label><br>
<input class="form-control" type="email" id="i_email" name="email" value="{{ lastFormField(formId, "email") }}" required><br>
<br>
<button type="submit">{{ __("Reset password") }}</button><br>
<br>
<table border="1" bordercolor="green" cellspacing="0" cellpadding="4">
<tr>
<td>
{{ __("I know my password and I want to %link%log in%/link%!", {
"link": '<a href="?_action=auth">',
"/link": '</a>',
}) }}
</td>
</tr>
</table>
</form>
{% endblock %}
{% block scripts %}
{{ parent() }}
<script type="text/javascript">
$(function() {
$("#i_email").focus();
});
</script>
{% endblock %}
|