{% extends "html/accounts/base.html" %} {% block title %}Sign up{% endblock %} {% block page_id %}registration-page{% endblock %} {% block body %}

Sign up for a Sage Notebook account

{% if error %}

Error{{ error[1:] }}found

{% endif %}
  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. Create a good password

    Your password must have at least 4 characters. Your password can not contain your username or spaces.

    {% if password_missing %}

    Error: No password given

    {% endif %} {% if password_invalid %}

    Error: Bad password

    {% endif %}
  3. Re-type your password

    {% if passwords_dont_match or retype_password_missing %}

    Error: Passwords didn't match

    {% endif %}
  4. {% if email or email_missing or email_invaild %}
  5. Enter your email address

    Your email address is required for account confirmation and recovery. You will be emailed a confirmation link right after you successfully sign up.

    {% if email_missing %}

    Error: No email address given

    {% endif %} {% if email_invalid %}

    Error: Invalid email address

    {% endif %}
  6. {% endif %} {% if challenge %}
  7. Answer a challenge

    {{ challenge_html }} {% if challenge_missing %}

    Error: No challenge response given

    {% endif %} {% if challenge_invalid %}

    Error: Invalid challenge response

    {% endif %}
  8. {% endif %}
{% endblock %}