diff --git a/frontend/src/components/pages/Register.js b/frontend/src/components/pages/Register.js index 21d7619..2f506db 100644 --- a/frontend/src/components/pages/Register.js +++ b/frontend/src/components/pages/Register.js @@ -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 } });