@layout('layouts/main') @set('title', 'Login') @section('body')

Sign in to your account

@component('components/form/form', { 'action': '', 'method': 'post', }) @!component('components/form/field', { 'label': 'E-mail :', 'name': 'email', 'type': 'email', 'required': true, 'placeholder': 'exemple@mail.com', }) @!component('components/form/field', { 'label': 'Mot de passe :', 'name': 'password', 'type': 'password', 'required': true, 'placeholder': 'Votre mot de passe', }) @!component('components/form/button', { 'type': 'submit', 'text': 'Envoyer', 'style': 'flex w-full justify-center rounded-md bg-indigo-600 px-3 py-1.5 text-sm font-semibold leading-6 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600', }) @end

Not a member? Create your account

@end