Added the login feedback in the frontend

This commit is contained in:
cami 2021-07-05 00:01:50 +02:00
parent 160e4d936e
commit 9cd22e7d7d
2 changed files with 19 additions and 12 deletions

View file

@ -11,7 +11,7 @@
--secondary: rgb(218, 218, 218); --secondary: rgb(218, 218, 218);
--third: rgb(171, 183, 183); --third: rgb(171, 183, 183);
--forth: rgb(255, 255, 255); --forth: rgb(255, 255, 255);
--error: rgb(221, 140, 18); --error: rgb(221, 82, 18);
} }
.home, .home,
@ -58,6 +58,10 @@ h1 {
.errorMessage { .errorMessage {
color: var(--error); color: var(--error);
max-width: 60%;
/* top, right, bottom, left */
margin: 0 auto;
margin-top: 1em;
} }
.bildnachweise { .bildnachweise {

View file

@ -10,6 +10,7 @@ import Secret from "./Secret";
export default function Login() { export default function Login() {
const [username, setUsername] = useState(""); const [username, setUsername] = useState("");
const [password, setPassword] = useState(""); const [password, setPassword] = useState("");
const [errorMessage, setErrorMessage] = useState("");
const onSubmitClick = (e) => { const onSubmitClick = (e) => {
e.preventDefault(); e.preventDefault();
@ -20,16 +21,17 @@ export default function Login() {
fetch("/api/login", { fetch("/api/login", {
method: "post", method: "post",
body: JSON.stringify(opts), body: JSON.stringify(opts),
}) }).then((response) => {
.then((r) => r.json()) if (response.status === 401) {
.then((token) => { response.json().then((resp) => {
if (token.access_token) { setErrorMessage(resp.message);
});
} else {
response.json().then((token) => {
login(token); login(token);
} else { });
// TODO: add text if the login is not correct }
console.log("Please type in the correct username / password"); });
}
});
}; };
const handleUsernameChange = (e) => { const handleUsernameChange = (e) => {
@ -40,13 +42,13 @@ export default function Login() {
setPassword(e.target.value); setPassword(e.target.value);
}; };
const [logged] = useAuth(); const [isLoggedIn] = useAuth();
return ( return (
<> <>
<div className="sitePage"> <div className="sitePage">
<h1>Login</h1> <h1>Login</h1>
{!logged ? ( {!isLoggedIn ? (
<form action="#"> <form action="#">
<InputField <InputField
LabelName="Benutzername" LabelName="Benutzername"
@ -63,6 +65,7 @@ export default function Login() {
InputPlaceHolder="Passwort" InputPlaceHolder="Passwort"
/> />
<br /> <br />
<p className="errorMessage">{errorMessage}</p>
<SubmitField onClick={onSubmitClick} LabelName="Einloggen" /> <SubmitField onClick={onSubmitClick} LabelName="Einloggen" />
</form> </form>
) : ( ) : (