{% extends 'base.html.twig' %}
{% block body %}
{% if app.user is not null %}
{% if hasSteamId %}
{% if isRegistered %}
{% include 'home/account.html.twig' %}
{% else %}
{% include 'register/register_form.html.twig' %}
{% endif %}
{% else %}
{% include 'connection/steam.html.twig' %}
{% endif %}
{% else %}
{% include 'connection/discord.html.twig' %}
{% endif %}
{% endblock %}