Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / registration / email_change_form.html @ 900325e8

History | View | Annotate | Download (575 Bytes)

1
{% extends "im/account_base.html" %}
2

    
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
                <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>
23

    
24
{% endblock body %}