Add Feedback at the registration process (fix #78) #79

Merged
cami merged 12 commits from feature/registerFeedback into main 2021-06-29 23:25:28 +00:00
Showing only changes of commit f79959d531 - Show all commits

View file

@ -4,7 +4,7 @@ import "../../App.css";
import Footer from "../../Footer";
import InputField from "../InputField";
import SubmitField from "../SubmitField";
import "../Input.css"
import "../Input.css";
export default function Login() {
const [username, setUsername] = useState("");
@ -22,16 +22,15 @@ export default function Login() {
method: "post",
body: JSON.stringify(opts),
}).then((response) => {
console.log(response)
console.log(response);
if (response.status === 409) {
/*
then is needed twice to get rid of the javascript Promise thing
*/
response.json().then((resp2) => {
setMessage(resp2.message)
setMessage(resp2.message);
});
}
else if (response.status === 200) {
} else if (response.status === 200) {
//TODO redirect to login #77 or #74
}
});