8 |
17 |
18 | {% if form.errors %}
19 |
20 |
21 |
Login failed. Try again...
22 |
23 |
24 | {% endif %}
25 |
26 |
47 |
48 |
49 | {% endblock %}
50 |
--------------------------------------------------------------------------------
/registration_bootstrap_3/templates/registration/logout.html:
--------------------------------------------------------------------------------
1 | {% extends "base.html" %}
2 | {% load bootstrap3 %}
3 |
4 | {% block title %}Login{% endblock %}
5 |
6 | {% block content %}
7 |
8 |
9 |
10 |
Password reset
11 |
12 |
13 |
14 | {% if validlink %}
15 |
27 |
28 | {% else %}
29 |
30 |
31 |
32 |
Password reset failed!
33 |
34 |
35 |
36 |
37 |
The password reset link was invalid,
38 | possibly because it has already been used.
39 |
Sign in
40 |
41 |
42 |
43 | {% endif %}
44 |
45 |
46 | {% endblock %}
47 |
--------------------------------------------------------------------------------
/registration_bootstrap_3/templates/registration/password_reset_done.html:
--------------------------------------------------------------------------------
1 | {% extends "base.html" %}
2 |
3 | {% block title %}Password reset successful{% endblock %}
4 |
5 | {% block content %}
6 |