FestinHegre/templates/clients/new.html.twig
2024-11-21 16:31:51 +01:00

15 lines
381 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Clients{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/new.css') }}"> <!-- Ajout du fichier CSS -->
{% endblock %}
{% block body %}
<h1>Create new Clients</h1>
{{ include('clients/_form.html.twig') }}
<a href="{{ path('app_clients_index') }}">back to list</a>
{% endblock %}