{% extends 'marketing/base.html' %} {% block title %}Connexion — DictIA{% endblock %} {% block description %}Connectez-vous à votre compte DictIA. Microsoft 365, Google, lien magique ou mot de passe.{% endblock %} {% block content %}

Connexion

{{ "Bienvenue sur DictIA — la transcription IA conforme à la Loi 25." | safe }}

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %} {# OAuth providers (Microsoft 365 + Google) — rendered only if env-enabled #} {% if oauth_microsoft_enabled or oauth_google_enabled or sso_enabled %}
{% if oauth_microsoft_enabled %} {# Official Microsoft 4-square logo #} Continuer avec Microsoft 365 {% endif %} {% if oauth_google_enabled %} {# Official Google "G" logo #} Continuer avec Google {% endif %} {% if sso_enabled %} Se connecter avec {{ sso_provider_name }} {% endif %} {% if not password_login_disabled %}
ou
{% endif %}
{% endif %} {% if not password_login_disabled %}
{{ form.hidden_tag() }}
{{ form.email(id='email', type='email', autocomplete='email', required=true, **{'aria-required':'true', 'class':'w-full px-3 py-2 border border-brand-border rounded-md text-brand-navy focus-visible:outline-2 focus-visible:outline-brand-b1 focus-visible:outline-offset-2'}) }} {% if form.email.errors %}{% endif %}
{{ form.password(id='password', autocomplete='current-password', required=true, **{'aria-required':'true', 'class':'w-full px-3 py-2 border border-brand-border rounded-md text-brand-navy focus-visible:outline-2 focus-visible:outline-brand-b1 focus-visible:outline-offset-2'}) }} {% if form.password.errors %}{% endif %}
Mot de passe oublié ?

{{ "Recevoir un lien de connexion par courriel (sans mot de passe)" | safe }}

{% endif %}

Pas encore de compte ? Créer un compte

{% endblock %}