25 lines
859 B
Twig
25 lines
859 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Ajouter une organisation{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="w-100 h-100 p-5 m-auto">
|
|
<div class="card p-3 m-3">
|
|
<div class="card-header border-0">
|
|
<div class="card-title d-flex justify-content-between align-items-center">
|
|
<h1>Ajouter une organisation</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
<form method="post" action="{{ path('organization_new') }}" enctype="multipart/form-data">
|
|
{{ form_start(form) }}
|
|
{{ form_widget(form) }}
|
|
<button type="submit" class="btn btn-primary">Enregistrer</button>
|
|
{{ form_end(form) }}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|