{% extends "base.html" %} {% block title %}Sign up{% endblock %} {% block css %}registration{% 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 4 and 32 characters long. You may only use letters, numbers, underscores, and one dot (.).

    {% 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 be between 6 and 32 characters long. Your password can not contain your username nor 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 %}
{% endblock %}