blob: 55a4b7997ffe2f2e1a03940a2f361cab53e0c2f9 (
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
|
{% set title = __("Reset password") %}
{% set formId = "pwnew" %}
{% set formError = getAndClearFormError(formId) %}
{% extends "base.twig" %}
{% block content %}
<div class="page-header margin-top-0">
<h1>{{ __("Reset password") }}</h1>
</div>
<div class="col-md-4"></div>
<div class="well col-md-4">
{% 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 }}">
<input type="hidden" name="token" value="{{ g.get.token }}">
<input type="hidden" name="sig" value="{{ g.get.sig }}">
<div class="form-group">
<label for="i_new_password">{{ __("New password:") }}</label>
<input class="form-control" type="password" id="i_new_password" name="new_password" required autofocus>
</div>
<div class="form-group">
<label for="i_retype_password">{{ __("Retype password:") }}</label>
<input class="form-control" type="password" id="i_retype_password" name="retype_password" required>
</div>
<div class="form-group">
<button class="btn btn-primary" type="submit">{{ __("Set new password") }}</button>
</div>
</form>
</div>
<div class="col-md-4"></div>
{% endblock %}
|