{% extends "base.html" %} {% block title %}Change Password — {{ target_user.username }} — Fossilrepo{% endblock %} {% block content %}
← Back to {{ target_user.username }}

Change Password for {{ target_user.username }}

{% csrf_token %} {% for field in form %}
{{ field }}
{% if field.errors %}

{{ field.errors.0 }}

{% endif %}
{% endfor %}

Password must be at least 8 characters and not entirely numeric or too common.

Cancel
{% endblock %}