adherer.html.twig 857 Bytes
Newer Older
Damien Moulard committed
1 2 3 4
{% extends 'common/layout.html.twig' %}

{% block content %}
<div class='container' style='max-width:800px;'>
5 6 7
	<div class='text-center mb-5 mt-2'>
		<h4 class='mt-3'><b>{{'Adhérer'|trans }}</b></h4>
	</div>
Damien Moulard committed
8
	<p>
9
	{% if isPayzenEnabled() %}
Damien Moulard committed
10 11 12 13 14 15 16
		{{form_start(form)}}
			{{ form_row(form.user) }}
			{% if form.groupe is defined %}
				{{ form_row(form.groupe) }}
			{% endif %}
			{{ form_row(form.geoloc) }}
			<div class='text-center mb-5 mt-2'>
17 18 19 20
				<h5><b>{{ 'Cotisation'|trans }}</b></h5>
			</div>
			{{ form_row(form.cotisation) }}
			<div class='text-center mb-5 mt-2'>
Damien Moulard committed
21 22 23
				{{ form_row(form.save) }}
			</div>
		{{form_end(form)}}
24 25 26 27 28
	{% else %}
		<div class='text-center mb-5 mt-2'>
			<p><i>Vous ne pouvez malheureusement pas adhérer ici, le paiement n'est pas configuré sur cette application.</i></p>
		</div>
	{% endif %}
Damien Moulard committed
29 30 31
	</p>
</div>
{% endblock %}