Revision d20cecdc
b/astakos/im/templates/account_base.html | ||
---|---|---|
4 | 4 |
|
5 | 5 |
{% block page.quicknav.items %} |
6 | 6 |
<li class="{% block signup_class %}{% endblock %}"> |
7 |
<a href="{% url astakos.im.views.user_logout %}">Logout</a>
|
|
7 |
<a href="{% url astakos.im.views.logout %}">LOGOUT</a>
|
|
8 | 8 |
</li> |
9 | 9 |
{% endblock %} |
10 | 10 |
|
b/astakos/im/templates/one_col_base.html | ||
---|---|---|
1 |
{% extends "base.html" %} |
|
2 |
|
|
3 |
{% block page.body %} |
|
4 |
<div class="maincol full"> |
|
5 |
{% block body %}{% endblock %} |
|
6 |
</div> |
|
7 |
{% endblock %} |
b/astakos/im/templates/registration/logged_out.html | ||
---|---|---|
1 |
{% extends 'base.html'%} |
|
1 |
{% extends 'one_col_base.html'%}
|
|
2 | 2 |
|
3 |
{% block title%} |
|
4 |
<h2>Logout</h2> |
|
5 |
<p>You have successfully logged out. <a href="{% url astakos.im.views.index %}">Login</a>.</p> |
|
6 |
{% endblock title%} |
|
3 |
{%block page.title %}Logout{% endblock %} |
|
4 |
{% block body %} |
|
5 |
<div class="section"> |
|
6 |
<h2>Logout</h2> |
|
7 |
<p>You have successfully logged out. <a href="{% url astakos.im.views.index %}">Login</a>.</p> |
|
8 |
</div> |
|
9 |
{% endblock %} |
b/astakos/im/templates/registration/password_change_form.html | ||
---|---|---|
9 | 9 |
<div class="form-row submit"> |
10 | 10 |
<input type="hidden" name="next" value="{{ next }}"> |
11 | 11 |
<input type="hidden" name="auth" value="{{ user.auth_token }}"> |
12 |
<input type="hidden" name="username" value="{{ username }}"> |
|
12 |
<input type="hidden" name="username" value="{{ username }}">
|
|
13 | 13 |
<input type="submit" class="submit altcol" value="CHANGE" /> |
14 | 14 |
</div> |
15 | 15 |
</form> |
b/astakos/im/templates/signup_complete.html | ||
---|---|---|
1 |
{% extends "base.html" %}
|
|
1 |
{% extends 'one_col_base.html'%}
|
|
2 | 2 |
|
3 |
{% block title%} |
|
4 |
<h1>Thank you</h1> |
|
5 |
{% endblock title%} |
|
3 |
{%block page.title %}Signup{% endblock %} |
|
4 |
{% block body %} |
|
5 |
<div class="section"> |
|
6 |
<h2>Sign up</h2> |
|
7 |
<p>Thank you.</p> |
|
8 |
</div> |
|
9 |
{% endblock %} |
Also available in: Unified diff