Add contact page
This commit is contained in:
27
templates/configuration/index.html.twig
Normal file
27
templates/configuration/index.html.twig
Normal file
@@ -0,0 +1,27 @@
|
||||
{% extends 'base_admin.html.twig' %}
|
||||
|
||||
{% block title %}
|
||||
Configuration
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<main class="lg:pl-72">
|
||||
<div class="xl:pr-96">
|
||||
<div class="px-4 py-10 sm:px-6 lg:px-8 lg:py-6">
|
||||
{{ form_start(form) }}
|
||||
{{ form_widget(form) }}
|
||||
{{ form_end(form) }}
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<aside
|
||||
class="fixed inset-y-0 right-0 hidden w-96 overflow-y-auto border-l border-gray-200 px-4 py-6 sm:px-6 lg:px-8 xl:block dark:border-white/10"
|
||||
>
|
||||
<a
|
||||
href="#"
|
||||
class="rounded-md bg-amber-600 px-4 py-2.5 text-sm font-semibold text-white shadow-xs hover:bg-amber-500 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-amber-600 dark:bg-amber-500 dark:shadow-none dark:hover:bg-amber-400 dark:focus-visible:outline-amber-500"
|
||||
>
|
||||
Modifier la configuration
|
||||
</a>
|
||||
</aside>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user