93 lines
2.6 KiB
Vue
93 lines
2.6 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="Log in" />
|
|
|
|
<div v-if="status" class="alert alert-success mb-3">
|
|
{{ status }}
|
|
</div>
|
|
|
|
<form @submit.prevent="submit">
|
|
<div class="mb-3">
|
|
<InputLabel for="email" value="Email" />
|
|
|
|
<TextInput
|
|
id="email"
|
|
type="email"
|
|
class="mt-1"
|
|
v-model="form.email"
|
|
required
|
|
autofocus
|
|
autocomplete="username"
|
|
/>
|
|
|
|
<InputError :message="form.errors.email" />
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<InputLabel for="password" value="Password" />
|
|
|
|
<TextInput
|
|
id="password"
|
|
type="password"
|
|
class="mt-1"
|
|
v-model="form.password"
|
|
required
|
|
autocomplete="current-password"
|
|
/>
|
|
|
|
<InputError :message="form.errors.password" />
|
|
</div>
|
|
|
|
<div class="mb-3 form-check">
|
|
<Checkbox name="remember" v-model:checked="form.remember" />
|
|
<label class="form-check-label ms-2">Remember me</label>
|
|
</div>
|
|
|
|
<div class="d-flex align-items-center justify-content-end gap-2">
|
|
<Link
|
|
v-if="canResetPassword"
|
|
:href="route('password.request')"
|
|
class="text-decoration-underline small"
|
|
>
|
|
Forgot your password?
|
|
</Link>
|
|
|
|
<PrimaryButton :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
|
|
Log in
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</GuestLayout>
|
|
</template>
|