{% extends "base.html" %} {% block stylesheets %} {% endblock %} {% block content %}

Register

{% include "components/errors.html" %} {% if integrations.mlc() %} Login with Major League Cyber
{% endif %} {% with form = Forms.auth.RegistrationForm() %} {% from "macros/forms.html" import render_extra_fields %}
{{ form.name.label }} {{ form.name(class="form-control", value=name) }} Your username on the site
{{ form.email.label }} {{ form.email(class="form-control", value=email) }} Never shown to the public
{{ form.password.label }} {{ form.password(class="form-control", value=password) }} Password used to log into your account
{{ form.nonce() }} {{ render_extra_fields(form.extra) }}
{{ form.submit(class="btn btn-md btn-primary btn-outlined float-right") }}
{% if Configs.tos_or_privacy %}
By registering, you agree to the privacy policy and terms of service
{% endif %}
{% endwith %}
{% endblock %} {% block scripts %} {% endblock %}