rsnext/examples/with-passport-and-next-connect/pages/login.js
Balázs Orbán 11d99258d5
Fixed errors at with-passport-and-next-connect. (#41897)
Co-authored-by: monterowilken311 <monterowilken311@gmail.com>
2022-10-26 13:34:53 -07:00

59 lines
1.6 KiB
JavaScript

import { useState, useEffect } from 'react'
import Router from 'next/router'
import Link from 'next/link'
import { useUser } from '../lib/hooks'
export default function LoginPage() {
const [user, { mutate }] = useUser()
const [errorMsg, setErrorMsg] = useState('')
async function onSubmit(e) {
e.preventDefault()
const body = {
username: e.currentTarget.username.value,
password: e.currentTarget.password.value,
}
const res = await fetch('/api/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(body),
})
if (res.status === 200) {
const userObj = await res.json()
// set user to useSWR state
mutate(userObj)
} else {
setErrorMsg('Incorrect username or password. Try better!')
}
}
useEffect(() => {
// redirect to home if user is authenticated
if (user) Router.push('/')
}, [user])
return (
<>
<h1>Login to Example</h1>
{errorMsg && <p className="error">{errorMsg}</p>}
<div className="form-container">
<form onSubmit={onSubmit}>
<label>
<span>Username</span>
<input type="text" name="username" required />
</label>
<label>
<span>Password</span>
<input type="password" name="password" required />
</label>
<div className="submit">
<button type="submit">Login</button>
<Link href="/signup">I don't have an account</Link>
</div>
</form>
</div>
</>
)
}