mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 05:25:37 +07:00
163 lines
8.1 KiB
TypeScript
163 lines
8.1 KiB
TypeScript
import GuestLayout from '@/Layouts/GuestLayout';
|
|
import { Head, Link, useForm } from '@inertiajs/react';
|
|
import { FormEventHandler } from 'react';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/Components/ui/card';
|
|
import { Label } from '@/Components/ui/label';
|
|
import { Input } from '@/Components/ui/input';
|
|
import { Button } from '@/Components/ui/button';
|
|
import { Checkbox } from '@/Components/ui/checkbox';
|
|
import InputError from '@/Components/InputError';
|
|
|
|
export default function Login({
|
|
status,
|
|
canResetPassword,
|
|
}: {
|
|
status?: string;
|
|
canResetPassword: boolean;
|
|
}) {
|
|
const { data, setData, post, processing, errors, reset } = useForm({
|
|
email: '',
|
|
password: '',
|
|
remember: false,
|
|
});
|
|
|
|
const submit: FormEventHandler = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route('login'), {
|
|
onFinish: () => reset('password'),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<GuestLayout>
|
|
<Head title="Log in" />
|
|
|
|
<div className="flex flex-col items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
|
<Card className="w-full max-w-md rounded-3xl overflow-hidden">
|
|
<CardHeader className="space-y-1 text-center pt-8">
|
|
<CardTitle className="text-3xl font-extrabold tracking-tight">Selamat Datang Kembali</CardTitle>
|
|
<CardDescription className="text-gray-500">
|
|
Masuk ke akun NihonBuzz Academy anda
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="pb-8">
|
|
{status && (
|
|
<div className="mb-4 text-sm font-medium text-green-600">
|
|
{status}
|
|
</div>
|
|
)}
|
|
|
|
<form onSubmit={submit} className="space-y-6">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
name="email"
|
|
value={data.email}
|
|
className="block w-full"
|
|
autoComplete="username"
|
|
placeholder="nama@email.com"
|
|
onChange={(e) => setData('email', e.target.value)}
|
|
/>
|
|
<InputError message={errors.email} />
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<div className="flex items-center justify-between">
|
|
<Label htmlFor="password">Password</Label>
|
|
{canResetPassword && (
|
|
<Link
|
|
href={route('password.request')}
|
|
className="text-xs text-nihonbuzz-red hover:underline font-medium"
|
|
>
|
|
Lupa password?
|
|
</Link>
|
|
)}
|
|
</div>
|
|
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
value={data.password}
|
|
className="block w-full"
|
|
autoComplete="current-password"
|
|
onChange={(e) => setData('password', e.target.value)}
|
|
/>
|
|
<InputError message={errors.password} />
|
|
</div>
|
|
|
|
<div className="flex items-center space-x-2">
|
|
<Checkbox
|
|
id="remember"
|
|
checked={data.remember}
|
|
onCheckedChange={(checked) => setData('remember', checked as boolean)}
|
|
/>
|
|
<Label htmlFor="remember" className="text-sm text-gray-600 font-normal cursor-pointer">
|
|
Ingat saya
|
|
</Label>
|
|
</div>
|
|
|
|
<div className="pt-2">
|
|
<button className="btn btn-primary w-full h-auto py-3 rounded-xl shadow-sm text-sm font-bold" disabled={processing}>
|
|
Masuk Sekarang
|
|
</button>
|
|
</div>
|
|
|
|
<div className="relative">
|
|
<div className="absolute inset-0 flex items-center">
|
|
<span className="w-full border-t border-gray-100" />
|
|
</div>
|
|
<div className="relative flex justify-center text-xs uppercase">
|
|
<span className="bg-white px-2 text-gray-500 font-medium">Atau masuk dengan</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-1 gap-3">
|
|
<Button
|
|
type="button"
|
|
variant="outline"
|
|
className="btn btn-glass w-full h-auto py-3 rounded-xl text-sm font-bold flex items-center justify-center gap-3 transition-all"
|
|
onClick={() => window.location.href = route('social.redirect', { provider: 'google' })}
|
|
>
|
|
<svg className="w-5 h-5" viewBox="0 0 24 24">
|
|
<path
|
|
d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"
|
|
fill="#4285F4"
|
|
/>
|
|
<path
|
|
d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"
|
|
fill="#34A853"
|
|
/>
|
|
<path
|
|
d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l3.66-2.84z"
|
|
fill="#FBBC05"
|
|
/>
|
|
<path
|
|
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
|
|
fill="#EA4335"
|
|
/>
|
|
</svg>
|
|
Google
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="text-center text-sm text-gray-500">
|
|
Belum punya akun?{' '}
|
|
<Link
|
|
href={route('register')}
|
|
className="text-nihonbuzz-red font-bold hover:underline"
|
|
>
|
|
Daftar Gratis
|
|
</Link>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</GuestLayout>
|
|
);
|
|
}
|