{% extends "base.html" %} {% block title %} Choose Username {% endblock title %} {% block content %}

Choose Your Username

1
2
3
4
5

Your username will be how others identify you on the Matrix network. It will appear as @username:{{ matrix_domain }}

{% csrf_token %}
{{ form.username }}
{% if form.username.errors %}

{{ form.username.errors.0 }}

{% else %}

Usernames can contain letters, numbers, and some special characters.

{% endif %}
{% endblock content %}