{% extends 'base.html' %} {% block title %}Login{% endblock %} {% block content %}

Login to Quizzical Beats

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% if oauth_providers and (oauth_providers.google or oauth_providers.authentik) %}
{% if oauth_providers.google %} Sign in with Google {% endif %} {% if oauth_providers.authentik %} Authentik logo Sign in with Authentik {% endif %}
{% endif %}

Don't have an account? Register

{% endblock %}