mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 00:02:15 +01:00
add support for passwordless user creation; add filament loading support for new laravel modules namespacing; add support for pluggable password reset and login rules
120 lines
3.7 KiB
Vue
120 lines
3.7 KiB
Vue
<script setup lang="ts">
|
|
import { Head, Link, useForm, usePage } from '@inertiajs/vue3';
|
|
import AuthenticationCard from '@/Components/AuthenticationCard.vue';
|
|
import AuthenticationCardLogo from '@/Components/AuthenticationCardLogo.vue';
|
|
import Banner from '@/Components/Banner.vue';
|
|
import { Field, FieldLabel, FieldError } from '@/packages/ui/src/field';
|
|
import PrimaryButton from '@/packages/ui/src/Buttons/PrimaryButton.vue';
|
|
import TextInput from '@/packages/ui/src/Input/TextInput.vue';
|
|
|
|
withDefaults(
|
|
defineProps<{
|
|
canResetPassword?: boolean;
|
|
status?: string;
|
|
}>(),
|
|
{
|
|
canResetPassword: false,
|
|
status: '',
|
|
}
|
|
);
|
|
|
|
const form = useForm({
|
|
email: '',
|
|
password: '',
|
|
remember: true,
|
|
});
|
|
|
|
const submit = () => {
|
|
form.transform((data) => ({
|
|
...data,
|
|
remember: form.remember ? 'on' : '',
|
|
})).post(route('login'), {
|
|
onFinish: () => form.reset('password'),
|
|
});
|
|
};
|
|
|
|
const page = usePage<{
|
|
flash?: {
|
|
message?: string;
|
|
};
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Log in" />
|
|
|
|
<AuthenticationCard>
|
|
<template #logo>
|
|
<AuthenticationCardLogo />
|
|
</template>
|
|
|
|
<template #actions>
|
|
<Link
|
|
class="py-8 text-text-secondary text-sm font-medium opacity-90 hover:opacity-100 transition"
|
|
:href="route('register')">
|
|
No account yet? <span class="text-text-primary">Register here!</span>
|
|
</Link>
|
|
</template>
|
|
|
|
<Banner card />
|
|
|
|
<div v-if="status" class="mb-4 font-medium text-sm text-green-400">
|
|
{{ status }}
|
|
</div>
|
|
<div
|
|
v-if="page.props.flash?.message"
|
|
class="bg-red-400 text-black text-center w-full px-3 py-1 mb-4 rounded-lg">
|
|
{{ page.props.flash?.message }}
|
|
</div>
|
|
|
|
<!-- Extension seam: alternative-auth errors (e.g. SSO callback failures) -->
|
|
<slot name="error" />
|
|
|
|
<form @submit.prevent="submit">
|
|
<Field>
|
|
<FieldLabel for="email">Email</FieldLabel>
|
|
<TextInput
|
|
id="email"
|
|
v-model="form.email"
|
|
type="email"
|
|
class="block w-full"
|
|
required
|
|
autofocus
|
|
autocomplete="username" />
|
|
<FieldError v-if="form.errors.email">{{ form.errors.email }}</FieldError>
|
|
</Field>
|
|
|
|
<Field class="mt-4">
|
|
<FieldLabel for="password">Password</FieldLabel>
|
|
<TextInput
|
|
id="password"
|
|
v-model="form.password"
|
|
type="password"
|
|
class="block w-full"
|
|
required
|
|
autocomplete="current-password" />
|
|
<FieldError v-if="form.errors.password">{{ form.errors.password }}</FieldError>
|
|
</Field>
|
|
|
|
<div class="flex items-center justify-end mt-4">
|
|
<Link
|
|
v-if="canResetPassword"
|
|
:href="route('password.request')"
|
|
class="underline text-sm text-text-secondary hover:text-text-primary rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
|
|
Forgot your password?
|
|
</Link>
|
|
|
|
<PrimaryButton
|
|
class="ms-4"
|
|
:class="{ 'opacity-25': form.processing }"
|
|
:disabled="form.processing">
|
|
Log in
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
|
|
<!-- Extension seam: alternative auth methods (e.g. SSO providers) -->
|
|
<slot name="alternatives" />
|
|
</AuthenticationCard>
|
|
</template>
|