-
Notifications
You must be signed in to change notification settings - Fork 2
/
address.html.twig
30 lines (27 loc) · 1.17 KB
/
address.html.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends 'base.html.twig' %}
{% block title %}
{{ 'New Address'| trans }}
{% endblock %}
{% block body %}
<main>
{% include "@components/Molecules/Button/Button.html.twig" with {
text: 'My delivery addresses' | trans,
href: '/account-address',
variant: 'minimal',
icon_left: 'chevron-left',
classes: 'mt-2 lg:mt-6 lg:ml-5',
} %}
<div class="lg:w-[400px] mx-6 lg:mx-auto mt-8 lg:mt-4">
<div class='h3'>{{'New Address' | trans}}</div>
<div class="flex flex-col gap-6 mt-6 lg:mt-11 mb-[80px] md:mb-[120px] mx-2 lg:mx-0">
{% include '@components/Molecules/Fields/FieldInput/FieldInput.html.twig' with {name: "name", label: "Nom de l'adresse" } %}
{% include '@components/Molecules/Fields/FieldInput/FieldInput.html.twig' with {name: "lastName", label: "Nom" } %}
{% include '@components/Molecules/Fields/FieldInput/FieldInput.html.twig' with {name: "firstName", label: "Prénom" | trans } %}
/!\ A compléter quand les formulaire seront disponibles
</div>
</div>
</main>
{% endblock %}
{% block footer %}
{% include '@components/Layout/Footer/FooterCheckout.html.twig' %}
{% endblock %}