You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
4.0 KiB
JavaScript
105 lines
4.0 KiB
JavaScript
import React from 'react'
|
|
import { Head, useForm, Link } from '@inertiajs/react'
|
|
import { FcGoogle } from 'react-icons/fc'
|
|
|
|
import CustomerLayout from '@/Layouts/CustomerLayout'
|
|
import FormInput from '@/Components/FormInput'
|
|
import Button from '@/Components/Button'
|
|
import Alert from '@/Components/Alert'
|
|
|
|
export default function Index({ app_name, flash }) {
|
|
const { data, setData, post, processing, errors } = useForm({
|
|
username: '',
|
|
password: '',
|
|
})
|
|
|
|
const handleOnChange = (event) => {
|
|
setData(
|
|
event.target.name,
|
|
event.target.type === 'checkbox'
|
|
? event.target.checked
|
|
? 1
|
|
: 0
|
|
: event.target.value
|
|
)
|
|
}
|
|
|
|
const handleSubmit = () => {
|
|
post(route('customer.login'))
|
|
}
|
|
|
|
const handleKeyDown = (e) => {
|
|
if (e.code === 'Enter') {
|
|
handleSubmit()
|
|
}
|
|
}
|
|
|
|
const handleLoginWithGoogle = () => {
|
|
window.location = route('customer.login.google')
|
|
}
|
|
|
|
return (
|
|
<CustomerLayout>
|
|
<Head title="Login" />
|
|
<div className="flex flex-col justify-center min-h-[calc(90dvh)]">
|
|
<div className="m-4 border shadow-md p-6 pt-4">
|
|
<div className="text-2xl font-bold mb-4">Sign in</div>
|
|
<Alert type={flash.message.type}>
|
|
<span className="font-semibold">
|
|
{flash.message.message}
|
|
</span>
|
|
</Alert>
|
|
<div className="w-full">
|
|
<FormInput
|
|
placeholder="username"
|
|
name="username"
|
|
value={data.username}
|
|
onChange={handleOnChange}
|
|
error={errors.username}
|
|
onKeyDownCapture={(e) => handleKeyDown(e)}
|
|
/>
|
|
</div>
|
|
<div className="w-full">
|
|
<FormInput
|
|
type="password"
|
|
placeholder="password"
|
|
name="password"
|
|
value={data.password}
|
|
onChange={handleOnChange}
|
|
error={errors.username}
|
|
onKeyDownCapture={(e) => handleKeyDown(e)}
|
|
/>
|
|
</div>
|
|
<div className="w-full flex flex-row justify-between">
|
|
<Button processing={processing} onClick={handleSubmit}>
|
|
Sign in
|
|
</Button>
|
|
{/* <a href="#" className="text-sm underline text-blue-600">
|
|
forgot password
|
|
</a> */}
|
|
</div>
|
|
<div className="flex flex-row items-center space-x-2 justify-between my-3">
|
|
<div className="border-b-2 w-full" />
|
|
<div>OR</div>
|
|
<div className="border-b-2 w-full" />
|
|
</div>
|
|
<div className="flex flex-row w-full justify-center">
|
|
<div
|
|
className="flex flex-row items-center space-x-2 border-2 border-blue-600 px-4 py-2 hover:bg-blue-500 hover:text-white rounded select-none"
|
|
onClick={handleLoginWithGoogle}
|
|
>
|
|
<FcGoogle className="h-6 w-6" />
|
|
<div>Sign in with Google</div>
|
|
</div>
|
|
</div>
|
|
<div className="mt-10 w-full text-center text-blue-600 underline">
|
|
<Link href={route('customer.register')}>
|
|
dont have an account ? register
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</CustomerLayout>
|
|
)
|
|
}
|