Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / profile.html @ 5ebebb20

History | View | Annotate | Download (852 Bytes)

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

    
3
{% block body %}
4

    
5
<form action={%url edit_profile %} method="post" class="withlabels hidden-submit">{% csrf_token %}
6
    
7
    {% with profile_form as form %}
8
    {% include "im/form_render.html" %}
9
    {% endwith %}
10

    
11
    <div class="form-row submit">
12
        <input type="hidden" name="next" value="{{ next }}">
13
        <input type="hidden" name="auth" value="{{ user.auth_token }}">
14
        <input type="submit" class="submit altcol" value="UPDATE" />
15
    </div>
16

    
17
</form>
18

    
19
<div class="two-cols-links">
20
        <p><a href="{% url password_change %}">Change Password</a></p>
21
        <p>
22
                <a href="https://okeanos.grnet.gr/home/">Back to ~okeanos</a>
23
                <a href="https://cyclades.okeanos.grnet.gr/ui/">Take me to cyclades</a>
24
                <a href="https://pithos.okeanos.grnet.gr/ui/">Take me to pithos+</a>
25
        </p>
26
</div>
27
{% endblock body %}