Revision 495eb8f3

b/snf-astakos-app/astakos/im/templates/registration/email_change_confirm.html
1
{% extends 'im/one_col_base.html'%}
1
{% extends "im/account_base.html" %}
2 2

  
3
{%block page.title %}Email change{% endblock %}
4
{% block body %}
5
<div class="section">
6
    <p>Email change sent.</p>
3
 
4

  
5
{% block body %} 
6
<div class="two-cols clearfix">
7
	<div class="lt">
8
		<img class="pic" src="{{ IM_STATIC_URL }}images/mailbox.png" />
9
	</div>
10
	<div class="rt">
11
		<p>Email change sent.</p>
12
	</div>
7 13
</div>
8
{% endblock %}
14

  
15
{% endblock body %}
16
 
b/snf-astakos-app/astakos/im/templates/registration/email_change_done.html
1
{% extends 'im/one_col_base.html'%}
1
{% extends "im/account_base.html" %}
2 2

  
3
{%block page.title %}Email change{% endblock %}
4 3
{% block body %}
5
<div class="section">
6
    {% if modified_user %}
7
    <h2>Email changed syccessfully for user {{modified_user.id}}.</h2>
8
    {% endif %}
4

  
5
<div class="two-cols clearfix">
6
	<div class="lt">
7
		<img class="pic" src="{{ IM_STATIC_URL }}images/mailbox.png" />
8
	</div>
9
	<div class="rt">
10
		 {% if modified_user %}
11
	    <h2>Email changed syccessfully for user {{modified_user.id}}.</h2>
12
	    {% endif %}
13
	</div>
9 14
</div>
15

  
16
 
10 17
{% endblock %}
b/snf-astakos-app/astakos/im/templates/registration/email_change_form.html
1 1
{% extends "im/account_base.html" %}
2 2

  
3
{% block body %}
4
<form action="{% url email_change %}" method="post"
5
    class="withlabels">{% csrf_token %}
3
 
6 4

  
7
    {% include "im/form_render.html" %}
5
{% block body %} 
6
<div class="two-cols clearfix">
7
	<div class="lt">
8
		<img class="pic" src="{{ IM_STATIC_URL }}images/mailbox.png" />
9
	</div>
10
	<div class="rt">
11
		<form action="{% url email_change %}" method="post"
12
		    class="innerlabels">{% csrf_token %}
13
		
14
		    {% include "im/form_render.html" %}
15
		
16
		    <div class="form-row submit">
17
		        <input type="hidden" name="next" value="{{ next }}">
18
		        <input type="submit" class="submit altcol" value="CHANGE" />
19
		    </div>
20
		</form>
21
	</div>
22
</div>
8 23

  
9
    <div class="form-row submit">
10
        <input type="hidden" name="next" value="{{ next }}">
11
        <input type="submit" class="submit altcol" value="CHANGE" />
12
    </div>
13
</form>
14 24
{% endblock body %}

Also available in: Unified diff