{% extends 'base.html.twig' %} {% block title %}Verification - Mercuriale.io{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block app_header %} {% include 'components/_header.html.twig' %} {% 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 attente

Votre verification d'identite a ete initiee. Si vous n'avez pas termine, vous pouvez relancer le processus.

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 %}