{% extends "html/base.html" %} {% block title %}Create your Sage profile{% endblock %} {% block page_id %}login-page{% endblock %} {% block main %}

Create your Sage profile

  1. Create a username

    Your username must start with a letter and be between 3 and 64 characters long. You may only use letters, numbers, underscores, @, and dots.

    {% if username_missing %}

    Error: No username given

    {% endif %} {% if username_taken %}

    Error: Username already in use

    {% endif %} {% if username_invalid %}

    Error: Bad username

    {% endif %}
  2. Enter your email address

    Your email address is required for account confirmation and recovery.

    {% if email_missing %}

    Error: No email address given

    {% endif %} {% if email_invalid %}

    Error: Invalid email address

    {% endif %}
  3. {% if challenge %}
  4. Answer a challenge

    {{ challenge_html }} {% if challenge_missing %}

    Error: No challenge response given

    {% endif %} {% if challenge_invalid %}

    Error: Invalid challenge response

    {% endif %}
  5. {% endif %}
{% endblock %}