{% extends base_template %} {% block title %}Set a password{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Set a password

{% if message %}

{{ message }}

{% endif %}

You can optionally set a password on your account, to provide an alternative mechanism of logging in.

{% if form.old_password %} {% with form.old_password as field %}{% include "django_openid/_register_form_field.html" %}{% endwith %} {% endif %} {% with form.password as field %}{% include "django_openid/_register_form_field.html" %}{% endwith %} {% with form.password2 as field %}{% include "django_openid/_register_form_field.html" %}{% endwith %}

{% endblock %}