Commit 787d9653 authored by Jeffrey Morgan's avatar Jeffrey Morgan
Browse files

web: disable signup button while submitting

parent e6eee073
......@@ -4,6 +4,7 @@ import { useState } from 'react'
export default function Signup() {
const [email, setEmail] = useState('')
const [submitting, setSubmitting] = useState(false)
const [success, setSuccess] = useState(false)
return (
......@@ -11,6 +12,8 @@ export default function Signup() {
onSubmit={async e => {
e.preventDefault()
setSubmitting(true)
await fetch('/api/signup', {
method: 'POST',
headers: {
......@@ -19,6 +22,7 @@ export default function Signup() {
body: JSON.stringify({ email }),
})
setSubmitting(false)
setSuccess(true)
setEmail('')
......@@ -38,7 +42,8 @@ export default function Signup() {
<input
type='submit'
value='Get updates'
className='bg-black text-white rounded-lg px-4 py-2 focus:outline-none cursor-pointer'
disabled={submitting}
className='bg-black text-white disabled:text-neutral-200 disabled:bg-neutral-700 rounded-lg px-4 py-2 focus:outline-none cursor-pointer'
/>
{success && <p className='text-center text-sm'>You&apos;re signed up for updates</p>}
</form>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment