{% extends 'admin/base.html.twig' %} {% block title %}Choisissez votre formule | Izibrick{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

Créer un nouveau site

Choisissez la formule pour votre nouveau site. Un nouvel abonnement sera créé.

{% for message in app.flashes('error') %}
{{ message }}
{% endfor %}
{% for plan in plans %} {% set isPopular = plan.code == 'essential' %} {% set isFree = plan.priceMonthly == '0.00' %}
{# Badge #} {% if isPopular %}
Populaire
{% elseif isFree %}
Gratuit
{% else %}
Pro
{% endif %} {# Plan name #}

{{ plan.name }}

{# Price #}
{% if isFree %} Gratuit {% else %} {{ plan.priceMonthly }}€ /mois {% endif %}
{# Features #}
  • {{ plan.maxPages == 9999 ? 'Pages illimitées' : plan.maxPages ~ ' pages' }}
  • {{ plan.maxStorage < 1024 ? plan.maxStorage ~ ' MB' : (plan.maxStorage / 1024)|round(0) ~ ' GB' }} stockage
  • {% if plan.customDomain %}
  • Domaine personnalisé
  • {% endif %} {% if not plan.hasAds %}
  • Sans publicité
  • {% endif %} {% if plan.aiGeneration %}
  • IA & Chatbot inclus
  • {% endif %}
{# Selection indicator #}
{% endfor %}
{# Info box #}
Nouvel abonnement
Un nouvel abonnement sera créé pour ce site, facturé séparément de vos autres sites. {% set hasPaidPlans = false %} {% for plan in plans %} {% if plan.priceMonthly != '0.00' %} {% set hasPaidPlans = true %} {% endif %} {% endfor %} {% if hasPaidPlans %} Essai gratuit de 30 jours disponible sur les plans payants.{% endif %}
{# Buttons #}
{% endblock %}