{% extends "base.html.j2" %} {% block title %}Account Creation{% endblock %} {% block content %}
{# Display DLU.png #}
DLU Logo
{# If the error value is set, display the error in red text #} {% if error %}
{{ error }}
{% endif %} {# If the message value is set, display the message in green text #} {% if message %}
{{ message }}
{% endif %} {# Form which takes in Play Key, Account Name, and Account Password #}
{# Play Key input #}
In the format: AAAA-BBBB-CCCC-DDDD
{# Account Name input #}
Limited to a-z, A-Z, and 0-9. No spaces or special characters. Max 32 characters.
{# Account Password input #}
{# Account Repeat Password input #}
{# Agree to the Privacy Policy and Terms of Service #}
{# Submit button #}
{% endblock %}