-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
107 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
"use client" | ||
|
||
import { useState, ChangeEvent } from "react" | ||
import { postFirstUser } from "../queries" | ||
import { useMutation } from "react-query" | ||
import { useRouter } from "next/router" | ||
|
||
|
||
export default function Onboarding() { | ||
const router = useRouter() | ||
const mutation = useMutation(postFirstUser, { | ||
onSuccess: () => { | ||
setErrorText("") | ||
router.push("/login") | ||
}, | ||
onError: (e: Error) => { | ||
setErrorText(e.message) | ||
} | ||
}) | ||
const [username, setUsername] = useState<string>("") | ||
const [password1, setPassword1] = useState<string>("") | ||
const [password2, setPassword2] = useState<string>("") | ||
const passwordsMatch = password1 === password2 | ||
const [errorText, setErrorText] = useState<string>("") | ||
const handleUsernameChange = (event: ChangeEvent<HTMLInputElement>) => { setUsername(event.target.value) } | ||
const handlePassword1Change = (event: ChangeEvent<HTMLInputElement>) => { setPassword1(event.target.value) } | ||
const handlePassword2Change = (event: ChangeEvent<HTMLInputElement>) => { setPassword2(event.target.value) } | ||
return ( | ||
<div className="p-panel" > | ||
<div className="p-panel__header"> | ||
<h4 className="p-panel__title">Welcome to GoCert</h4> | ||
<p>Please create an admin user to get started</p> | ||
</div> | ||
<div className="p-panel__content"> | ||
<form className={"p-form-validation " + (!passwordsMatch ? "is-error" : "")}> | ||
<div className="p-form__group row"> | ||
<label className="p-form__label">User Name</label> | ||
<input type="text" id="InputUsername" name="InputUsername" onChange={handleUsernameChange} /> | ||
<label className="p-form__label">Password</label> | ||
<input className="p-form-validation__input" type="password" id="password1" name="password" placeholder="******" autoComplete="current-password" required={true} onChange={handlePassword1Change} /> | ||
<p className="p-form-help-text"> | ||
Password must have 8 or more characters, must include at least one capital letter, one lowercase letter, and either a number or a symbol. | ||
</p> | ||
<label htmlFor="p-form__label">Password Again</label> | ||
<input className="p-form-validation__input" type="password" id="InputPassword" name="password2" placeholder="******" autoComplete="current-password" onChange={handlePassword2Change} /> | ||
{!passwordsMatch && <p className="p-form-validation__message">Passwords do not match</p>} | ||
{errorText && | ||
<div className="p-notification--negative"> | ||
<div className="p-notification__content"> | ||
<h5 className="p-notification__title">Error</h5> | ||
<p className="p-notification__message">{errorText.split("error: ")}</p> | ||
</div> | ||
</div> | ||
} | ||
{!passwordsMatch ? ( | ||
<> | ||
<button type="submit" name="submit" disabled={true}>Submit</button> | ||
</> | ||
) : ( | ||
<button type="submit" name="submit" onClick={(event) => { event.preventDefault(); mutation.mutate({ username: username, password: password1 }) }}>Submit</button> | ||
) | ||
} | ||
</div> | ||
</form> | ||
</div> | ||
</div > | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters