{% extends 'core/base.html' %} {% block title %}Set Password | Killian{% endblock %} {% block content %}
{% if invalid_link %}

Invitation link unavailable

This account setup link is invalid, expired, or has already been used.

Ask a Killian administrator or manager to send a new invitation.

Return to sign in {% else %}

Set your Killian password

Account: {{ target_user.username }}

Choose a password with at least 10 characters. After signing in, Killian will require MFA enrollment.

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text|safe }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}