15 lines
396 B
Twig
15 lines
396 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}New Clients{% endblock %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('css/ControllerVues/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 %}
|