mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
35 lines
841 B
Plaintext
35 lines
841 B
Plaintext
<section id="contact" class="pt-32 mx-4 mb-24 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> |