Files
portfolio2023/build/resources/views/partials/main/contact.edge
T
Tutur33 977386f605 build
2023-12-06 22:34:07 +01:00

35 lines
835 B
Plaintext

<section id="contact" class="pt-32 mx-4 sm:mx-24">
<h2 class="text-2xl font-bold mb-10">Contact</h2>
@component('components/form/form', {
'action': '#',
'method': 'post',
})
@!component('components/form/field', {
'label': 'Nom :',
'name': 'nom',
'type': 'text',
'required': true,
'placeholder': 'nom',
})
@!component('components/form/field', {
'label': 'E-mail :',
'name': 'email',
'type': 'email',
'required': true,
'placeholder': 'exemple@mail.com',
})
@!component('components/form/field', {
'label': 'Message :',
'name': 'message',
'type': 'textarea',
'rows': 4,
'required': true,
})
@!component('components/form/button', {
'type': 'submit',
'text': 'Envoyer',
})
@end
</section>