{% extends 'base.html.twig' %} {% block title %}Verification - Mercuriale.io{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}
{% for message in app.flashes('error') %}
{{ message }}
{% endfor %} {% if organisation.verified %}

Compte verifie

Votre organisation est verifiee. Vous avez acces a toutes les fonctionnalites.

Acceder au tableau de bord
{% elseif organisation.stripeVerificationSessionId %}

Verification en cours

Votre verification d'identite est en cours de traitement. Vous serez notifie une fois terminee.

Piece d'identite
2 Verification
3 Compte active
Retour au tableau de bord
{% else %} {% set is_expired = not organisation.trialActive %}

{{ is_expired ? 'Periode d\'essai terminee' : 'Periode d\'essai' }}

{% if is_expired %} Votre periode d'essai est terminee. Verifiez votre identite pour continuer a utiliser Mercuriale.io. {% else %} Il vous reste {{ organisation.trialDaysRemaining }} jour{{ organisation.trialDaysRemaining > 1 ? 's' : '' }}. Verifiez votre identite pour debloquer toutes les fonctionnalites. {% endif %}

1 Piece d'identite
2 Verification
3 Compte active
{% if not is_expired %} Retour au tableau de bord {% endif %}
{% endif %}
{% endblock %}