]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/user-forgot-password.html
2896ea41b39a8ba13070468ca6795de55ca94653
[people/jschlag/pbs.git] / data / templates / user-forgot-password.html
1 {% extends "base-form2.html" %}
2
3 {% block title %}{{ _("Forgot password") }}{% end block %}
4
5 {% block body %}
6 <ul class="breadcrumb">
7 <li>
8 <a href="/">{{ _("Home") }}</a>
9 <span class="divider">/</span>
10 </li>
11 <li class="active">
12 <a href="/password-recovery">{{ _("Forgot password") }}</a>
13 </li>
14 </ul>
15
16 <div class="page-header">
17 <h1>{{ _("Forgot password") }}</h1>
18 </div>
19
20 <!-- XXX --->
21 <div class="alert alert-warning">
22 {{ _("Work in progress!") }}
23 </div>
24
25 <div class="row">
26 <div class="span6">
27 <p>
28 {{ _("You have forgotten you password, eh? Shame on you.") }}
29 {{ _("However, we allow to re-activate your account.") }}
30 </p>
31 <p>
32 {{ _("You need to enter your username below.") }}
33 {{ _("After that, you will receive an email with intructions how to go on.") }}
34 </p>
35 <hr>
36
37 <form class="form-horizontal" method="POST" action="">
38 {% raw xsrf_form_html() %}
39
40 <fieldset>
41 <div class="control-group">
42 <label class="control-label" for="name">{{ _("Your username") }}</label>
43 <div class="controls">
44 <input type="text" class="input-xlarge" id="name" name="name" />
45 </div>
46 </div>
47
48 <div class="form-actions">
49 <button type="submit" class="btn btn-primary">{{ _("Submit") }}</button>
50 </div>
51 </fieldset>
52 </form>
53 </div>
54 </div>
55 {% end block %}