{% extends "layout.html" %} {% block content %}
{% if team_name %}
You are being invited to join {{ team_name }}
{% endif %}

Sign In

Authenticate below to create or join a team.

{% for option in auth_options %} {% if option == "discord" %} {% if loop.index > 1 %} {{ bar("Or continue with Discord") }} {% endif %} {{ icons.discord(class="mr-2 size-4") }} Discord {% elif option == "email" %} {% if loop.index > 1 %} {{ bar("Or continue with Email") }} {% endif %}
{{ icons.spinner(attrs='class="animate-spin"') }}
{% elif option == "ctftime" %} {% if loop.index > 1 %} {{ bar("Or continue with CTFtime") }} {% endif %} {{ icons.ctftime(class="h-6 stroke-none") }} {% elif option == "credentials" %} {% if loop.index > 1 %} {{ bar("Or continue with credentials") }} {% endif %}
{% endif %} {% endfor %}

By continuing, you agree to our Terms.

{% endblock %} {% macro bar(text) %}
{{ text }}
{% endmacro %}