Compare commits
2 Commits
964ca236e8
...
9b4870995f
Author | SHA1 | Date | |
---|---|---|---|
|
9b4870995f | ||
|
2f447cef1a |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "enterfront",
|
"name": "enterfront",
|
||||||
"version": "0.5.1",
|
"version": "0.5.2",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "enterfront",
|
"name": "enterfront",
|
||||||
"version": "0.5.1",
|
"version": "0.5.2",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@brojs/cli": "^1.0.0",
|
"@brojs/cli": "^1.0.0",
|
||||||
"@brojs/create": "^1.0.0",
|
"@brojs/create": "^1.0.0",
|
||||||
|
@ -29,5 +29,5 @@
|
|||||||
"clean": "rimraf dist"
|
"clean": "rimraf dist"
|
||||||
},
|
},
|
||||||
"name": "enterfront",
|
"name": "enterfront",
|
||||||
"version": "0.5.1"
|
"version": "0.5.2"
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@ import LoginTitle from "../components/reg/loginTitle.jsx";
|
|||||||
import {MessageType} from "../backend/notifications/message.tsx";
|
import {MessageType} from "../backend/notifications/message.tsx";
|
||||||
import {displayMessage} from "../backend/notifications/notifications.js";
|
import {displayMessage} from "../backend/notifications/notifications.js";
|
||||||
import {post} from "../backend/api.js";
|
import {post} from "../backend/api.js";
|
||||||
|
import {URLs} from "../__data__/urls";
|
||||||
|
|
||||||
const SignIn = () => {
|
const SignIn = () => {
|
||||||
const [name, setName] = useState("");
|
const [name, setName] = useState("");
|
||||||
@ -37,7 +38,7 @@ const SignIn = () => {
|
|||||||
setNameErrorsCounter(0);
|
setNameErrorsCounter(0);
|
||||||
|
|
||||||
localStorage.setItem('message', 'Successfully logged in!');
|
localStorage.setItem('message', 'Successfully logged in!');
|
||||||
window.location.href = "/";
|
window.location.href = URLs.baseUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -5,6 +5,7 @@ import LoginTitle from "../components/reg/loginTitle.jsx";
|
|||||||
import {post} from "../backend/api";
|
import {post} from "../backend/api";
|
||||||
import {displayMessage} from "../backend/notifications/notifications";
|
import {displayMessage} from "../backend/notifications/notifications";
|
||||||
import {MessageType} from "../backend/notifications/message";
|
import {MessageType} from "../backend/notifications/message";
|
||||||
|
import { URLs } from "../__data__/urls";
|
||||||
|
|
||||||
|
|
||||||
const SignUp = () => {
|
const SignUp = () => {
|
||||||
@ -47,7 +48,7 @@ const SignUp = () => {
|
|||||||
localStorage.setItem('username', name);
|
localStorage.setItem('username', name);
|
||||||
|
|
||||||
localStorage.setItem('message', 'Successfully signed up!');
|
localStorage.setItem('message', 'Successfully signed up!');
|
||||||
window.location.href = "/";
|
window.location.href = URLs.baseUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
Loading…
Reference in New Issue
Block a user