-
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 %}
-
Create a good password
Your password must be between 4 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 %}
Re-type your password
{% if passwords_dont_match or retype_password_missing %}
Error: Passwords didn't match
{% endif %}
{% if email or email_missing or email_invaild %}
-
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 %}
{% endif %}
{% if challenge %}
-
Answer a challenge
{{ challenge_html }}
{% if challenge_missing %}
Error: No challenge response given
{% endif %}
{% if challenge_invalid %}
Error: Invalid challenge response
{% endif %}
{% endif %}