95 lines
3.0 KiB
Vue
95 lines
3.0 KiB
Vue
<script setup>
|
|
import Checkbox from '@/Components/Checkbox.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, useForm } from '@inertiajs/vue3';
|
|
|
|
defineProps({
|
|
status: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
});
|
|
|
|
const form = useForm({
|
|
email: '',
|
|
password: '',
|
|
remember: false,
|
|
});
|
|
|
|
const submit = () => {
|
|
form.post(route('login.store'), {
|
|
onFinish: () => form.reset('password'),
|
|
});
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Connexion superviseur" />
|
|
|
|
<div class="flex min-h-screen flex-col items-center justify-center bg-gray-100 px-4">
|
|
<div class="mb-8 text-center">
|
|
<h1 class="text-2xl font-bold text-gray-900">Laverie — Back-office</h1>
|
|
<p class="mt-1 text-sm text-gray-600">Connexion exploitant</p>
|
|
</div>
|
|
|
|
<div class="w-full max-w-md overflow-hidden rounded-lg bg-white px-6 py-8 shadow-md">
|
|
<div v-if="status" class="mb-4 text-sm font-medium text-green-600">
|
|
{{ status }}
|
|
</div>
|
|
|
|
<form @submit.prevent="submit">
|
|
<div>
|
|
<InputLabel for="email" value="Adresse e-mail" />
|
|
|
|
<TextInput
|
|
id="email"
|
|
type="email"
|
|
class="mt-1 block w-full"
|
|
v-model="form.email"
|
|
required
|
|
autofocus
|
|
autocomplete="username"
|
|
/>
|
|
|
|
<InputError class="mt-2" :message="form.errors.email" />
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<InputLabel for="password" value="Mot de passe" />
|
|
|
|
<TextInput
|
|
id="password"
|
|
type="password"
|
|
class="mt-1 block w-full"
|
|
v-model="form.password"
|
|
required
|
|
autocomplete="current-password"
|
|
/>
|
|
|
|
<InputError class="mt-2" :message="form.errors.password" />
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<label class="flex items-center">
|
|
<Checkbox name="remember" v-model:checked="form.remember" />
|
|
<span class="ms-2 text-sm text-gray-600">Se souvenir de moi</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="mt-6">
|
|
<PrimaryButton
|
|
class="w-full justify-center"
|
|
:class="{ 'opacity-25': form.processing }"
|
|
:disabled="form.processing"
|
|
>
|
|
Se connecter
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|