{% extends 'auth/master.twig' %} {% from 'macros.twig' import container_title %} {% from '_layout/input.twig' import input_hidden, input_csrf, input_text %} {% set title = 'Register' %} {% block content %}
{{ container_title(' Register') }}
{% if not register_restricted %}
{% if register_notices|length > 0 %}
{% for notice in register_notices %} {% if notice == '_play_hint' %} {% else %}

{{ notice }}

{% endif %} {% endfor %}
{% endif %}

Welcome to Flashii! Before creating your account, here are a few things you should take note of.

By creating an account you agree to the rules.

Engaging in borderline illegal activity on platforms provided by Flashii will result in a permanent ban, as described by Global Rule 5.

You are not allowed to have more than one account unless given explicit permission, as described by Global Rule 6.

You must be at least 18 years of age to use this website, as described by Global Rule 8.

{% endif %}
{{ input_csrf() }} {% if register_restricted %}
{% if register_restricted == 'ban' %}

A user from the same IP address you're currently visiting the site from is banned. If said user isn't you and you wish to create an account, please contact us!

{% else %}

The IP address from which you are visiting the website appears on our blacklist, you are not allowed to register from this address but if you already have an account you can log in just fine using the form above. If you think this blacklisting is a mistake, please contact us!

{% endif %}
{% else %}
Log in
{% endif %}
{% endblock %}