{% if form %} {{ error|default:"" }} {% blocktrans %}Your username on {{ site_name }}{% endblocktrans %} {% for error in form.username.errors %}{{ error }}{% endfor %} {% trans "Email address" %} {% if request.session.pending_email %} {% blocktrans with pending_email=request.session.pending_email %}Please click the confirmation link in the email sent to {{ pending_email }}; if you haven't received it for more than a few minutes, please input and save again.{% endblocktrans %} {% elif not form.email.value %} {% trans "Email is recommended as a backup login method, if you log in via a Fediverse instance" %} {% endif %} {% for error in form.email.errors %} {{ error }} {% endfor %} {% if not request.user.is_authenticated %} The following settings may also be changed later in preferences. {% trans "Turn on crosspost to other social networks by default" %} {% trans "Use display name, bio and avatar from the social network you authenticated with" %} {% trans "Add follow, mute and block list from the social network you authenticated with" %} {% endif %} {% csrf_token %} {% else %} {% endif %}