rsnext/examples/with-passport-and-next-connect/pages/signup.js
Hoang Vo ee372f472f
feat(example): add CRUD example with next-connect and passport (#11359)
* Add with-next-connect example

* Update README

* Fix code and lint

* Fix typo

* Run prettier

* Include username

* Rename example

* Match with-passport styling

* Add comments in code

* Run prettier

* Rewrite example

* Add some comments

* Update README.md

* keys -> secret

* Updated package.json and readme

* UX changes

* Securely encrypt cookie with @hapi/iron

* Update README

* Abstract db related actions and update README

* security: add note on password hashing

* remove unused dep

* Updated readme

Co-authored-by: Luis Alvarez <luis@zeit.co>
2020-04-13 18:07:54 -05:00

76 lines
2 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 SignupPage() {
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,
name: e.currentTarget.name.value,
}
if (body.password !== e.currentTarget.rpassword.value) {
setErrorMsg(`The passwords don't match`)
return
}
const res = await fetch('/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(body),
})
if (res.status === 201) {
const userObj = await res.json()
// set user to useSWR state
mutate(userObj)
} else {
setErrorMsg(await res.text())
}
}
useEffect(() => {
// redirect to home if user is authenticated
if (user) Router.push('/')
}, [user])
return (
<>
<h1>Sign up 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>
<label>
<span>Repeat password</span>
<input type="password" name="rpassword" required />
</label>
<label>
<span>Name</span>
<input type="text" name="name" required />
</label>
<div className="submit">
<button type="submit">Sign up</button>
<Link href="/login">
<a>I already have an account</a>
</Link>
</div>
</form>
</div>
</>
)
}