This commit is contained in:
2024-12-24 17:29:37 +01:00
parent e0aa499940
commit 4c08435bd8
115 changed files with 3613 additions and 152 deletions

View File

@ -1,10 +1,19 @@
{% extends 'base.html.twig' %}
{% block title %}Hello HomeController!{% endblock %}
{% block body %}
<select class="select2" name="state">
<option value="AL">Alabama</option>
<option value="WY">Wyoming</option>
</select>
<div class="d-flex justify-content-center">
{% for accounting in accountings %}
<div class="card" style="width:400px">
<div class="card-body d-flex align-items-center">
<div class="ps-4">
<i class="fas {{accounting.icon}} fa-4x"></i>
</div>
<div class="p-3 fs-1">{{accounting.title}}</div>
</div>
</div>
{% endfor %}
</div>
{% endblock %}

View File

@ -0,0 +1 @@
<h2>Veuillez selectionner une compagnie</h2>