- {% if services %}
- <section id="services-list">
- <h1>{% trans "Sign in to:" %}</h1>
- {% for service in services %}
- <a href="{{ service.url }}" title="{{ service.name }}">
- <img src="{{ service.image.url }}" alt="{{ service.name }}">
- </a>
- {% endfor %}
- </section>
- {% endif %}
+
+{% block accounts-content %}
+ <h1>{% trans "Your profile" %}</h1>
+ <form method="post">
+ {% csrf_token %}
+ {{ form.as_p }}
+ <p><button type="submit">{% trans "Change profile" %}</button></p>
+ </form>