{% extends "base.html" %} {% block title %}Register New Account{% endblock %} {% block content %}
Create Account
{% if get.error is defined and get.error != 1 %}
{% if get.error == 'u_fail' %} The username you entered does not meet the requirements. Must be at least 4 characters, and no more than 35. Username can only contain a-zA-Z0-9_- {% elseif get.error == 'p_fail' %} The passwords you entered did not match or were not at least 8 characters. {% elseif get.error == 'a_fail' %} Account with that username or email already exists in the system. {% elseif get.error == 'xsrf' %} Invalid XSRF token submitted with the form. {% elseif get.error == 'token' %} No token was submitted with the request. {% elseif get.error == 't_fail' %} The token you submitted is not valid. {% else %} Undefined error occured. {% endif %}
{% endif %}

Welcome! Please fill out the form below to create an account and begin accessing servers. If you have already have an account please go to Account Settings → Server Token and add the token you have recieved and authenticate the request.

Please enter the token that you recieved in the email.


Must be between 4 and 35 characters long. (a-zA-Z0-9_-)

{{ xsrf|raw }}
{% endblock %}