109 lines
4.3 KiB
Vue
109 lines
4.3 KiB
Vue
<script setup>
|
|
import Checkbox from '@/Components/Checkbox.vue';
|
|
import GuestLayout from '@/Layouts/GuestLayout.vue';
|
|
import InputError from '@/Components/InputError.vue';
|
|
import InputLabel from '@/Components/InputLabel.vue';
|
|
import PrimaryButton from '@/Components/PrimaryButton.vue';
|
|
import TextInput from '@/Components/TextInput.vue';
|
|
import { Head, Link, useForm } from '@inertiajs/vue3';
|
|
|
|
defineProps({
|
|
canResetPassword: {
|
|
type: Boolean,
|
|
},
|
|
status: {
|
|
type: String,
|
|
},
|
|
});
|
|
|
|
const form = useForm({
|
|
email: '',
|
|
password: '',
|
|
remember: false,
|
|
});
|
|
|
|
const submit = () => {
|
|
form.post(route('login'), {
|
|
onFinish: () => form.reset('password'),
|
|
});
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<GuestLayout>
|
|
<Head title="Connexion" />
|
|
|
|
<div v-if="status" class="mb-4 text-sm font-medium text-emerald-600 bg-emerald-50 p-3 rounded-lg">
|
|
{{ status }}
|
|
</div>
|
|
|
|
<div class="mb-8 text-center space-y-1">
|
|
<h2 class="text-2xl font-serif font-black text-primary">Bon retour !</h2>
|
|
<p class="text-anthracite/60 text-sm">Veuillez entrer vos identifiants.</p>
|
|
</div>
|
|
|
|
<form @submit.prevent="submit" class="space-y-5">
|
|
<div>
|
|
<InputLabel for="email" value="Adresse Email" class="!font-subtitle !text-xs !uppercase !tracking-widest !text-anthracite/60 !mb-1" />
|
|
|
|
<TextInput
|
|
id="email"
|
|
type="email"
|
|
class="mt-1 block w-full !rounded-xl !border-anthracite/10 focus:!border-primary focus:!ring-primary/20 shadow-sm transition-colors text-sm"
|
|
v-model="form.email"
|
|
required
|
|
autofocus
|
|
autocomplete="username"
|
|
placeholder="prenom.nom@exemple.com"
|
|
/>
|
|
|
|
<InputError class="mt-2" :message="form.errors.email" />
|
|
</div>
|
|
|
|
<div>
|
|
<div class="flex justify-between items-center mb-1">
|
|
<InputLabel for="password" value="Mot de passe" class="!font-subtitle !text-xs !uppercase !tracking-widest !text-anthracite/60 !mb-0" />
|
|
|
|
<Link
|
|
v-if="canResetPassword"
|
|
:href="route('password.request')"
|
|
class="text-[10px] font-bold text-accent hover:text-accent/80 transition-colors uppercase tracking-wider"
|
|
>
|
|
Oublié ?
|
|
</Link>
|
|
</div>
|
|
|
|
<TextInput
|
|
id="password"
|
|
type="password"
|
|
class="mt-1 block w-full !rounded-xl !border-anthracite/10 focus:!border-primary focus:!ring-primary/20 shadow-sm transition-colors text-sm"
|
|
v-model="form.password"
|
|
required
|
|
autocomplete="current-password"
|
|
placeholder="••••••••"
|
|
/>
|
|
|
|
<InputError class="mt-2" :message="form.errors.password" />
|
|
</div>
|
|
|
|
<div class="block pt-2">
|
|
<label class="flex items-center group cursor-pointer w-max">
|
|
<Checkbox name="remember" v-model:checked="form.remember" class="!rounded !border-anthracite/20 text-primary focus:ring-primary shadow-sm group-hover:border-primary transition-colors" />
|
|
<span class="ms-2 text-sm text-anthracite/60 group-hover:text-anthracite transition-colors">Rester connecté</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="pt-4">
|
|
<button
|
|
type="submit"
|
|
:class="{ 'opacity-50 cursor-not-allowed': form.processing }"
|
|
:disabled="form.processing"
|
|
class="w-full flex justify-center py-3.5 px-4 bg-highlight text-[#3a2800] rounded-xl font-subtitle font-bold shadow-md shadow-highlight/20 hover:brightness-110 hover:-translate-y-0.5 hover:shadow-lg hover:shadow-highlight/30 transition-all text-sm uppercase tracking-widest focus:outline-none focus:ring-2 focus:ring-highlight/50 focus:ring-offset-2"
|
|
>
|
|
Se connecter
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</GuestLayout>
|
|
</template>
|