{% extends 'bo/base.html.twig' %} {% block title %}Créer un compte | Izibrick{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}
{# Decorative shapes #}
{# Header with Logo #}
izibrick

Créer un compte

Rejoignez Izibrick et créez votre site

{# Card Body #}
{% if error is defined %} {% endif %} {{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }} {# Email Input #}
{{ form_widget(form.email, { 'attr': { 'class': 'form-control form-control-lg register-input-with-icon rounded-3', 'placeholder': 'votre@email.com' } }) }}
{{ form_errors(form.email) }}
{# Password Input #}
{{ form_widget(form.plainPassword.first, { 'attr': { 'class': 'form-control form-control-lg register-input-with-icon rounded-3', 'placeholder': '••••••••' } }) }}
{{ form_errors(form.plainPassword.first) }}
{# Confirm Password Input #}
{{ form_widget(form.plainPassword.second, { 'attr': { 'class': 'form-control form-control-lg register-input-with-icon rounded-3', 'placeholder': '••••••••' } }) }}
{{ form_errors(form.plainPassword.second) }}
{# CAPTCHA - Vérification Anti-Robot #}
🤖
Vérification anti-robot
Pour protéger notre service
{{ form_widget(form.captcha, { 'attr': { 'class': 'form-control form-control-lg register-input-with-icon rounded-3', 'style': 'border-color: #667eea; background: white;' } }) }}
{{ form_errors(form.captcha) }} Résolvez cette simple opération pour continuer
{# CGU Checkbox #}
{{ form_widget(form.cgu, { 'attr': { 'class': 'form-check-input', 'style': 'border-color: #667eea;' } }) }}
{{ form_errors(form.cgu) }}
{# Hidden siteId field #} {{ form_widget(form.siteId) }} {# Submit Button #} {# Divider #}
ou
{# Login Link #}

Vous avez déjà un compte ?

Se connecter
{{ form_end(form) }}
{# Footer #}
{# Back to Home Link #}
{% endblock %}