{% extends 'base.html.twig' %}
{% block title %}Créer un compte{% endblock %}
{% block content %}
<section class="page_title ds s-overlay s-pt-150 s-pb-50"
style="background-image: url({{ asset('assets/images/cbrc/imagefond.jpg') }})">
<div class="s-blur"></div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1><i class="fas fa-user-plus mr-3"></i></i>Créer un compte</h1>
</div>
</div>
</div>
</section>
<section class="ls s-py-xl-150 s-py-lg-130 s-py-md-90 s-py-60">
<div class="container">
<div class="row justify-content-around ">
<div class="col-lg-6 col-md-8 col-12 card p-2 woocommerce-EditAccountForm">
<div class="card-body">
{{ form_start(registerform) }}
{{ form_row(registerform.email) }}
{{ form_row(registerform.plainPassword) }}
<div class="form-check round-check mb-3">
<input class="form-check-input" type="checkbox" id="termsofuse" required>
<label class="form-check-label" for="termsofuse">
<span class="small">Vous avez lu et vous acceptez les <a
href="{{ path('legal', relative = false) }}">conditions d'utilisation</a></span>
</label>
</div>
{{ form_row(registerform.register) }}
{{ form_end(registerform) }}
<small>
Vous avez un compte? <a href="{{ path('app_login', {}, relative = false) }}"><u>Connectez-vous</u></a>
</small>
</div>
</div>
</div>
</div>
</section>
{% endblock %}