Compare commits

...

2 Commits

Author SHA1 Message Date
Nikolai Petukhov
9b4870995f 0.5.2 2024-10-12 12:44:15 +03:00
Nikolai Petukhov
2f447cef1a fixed init routes 2024-10-12 12:44:04 +03:00
4 changed files with 7 additions and 5 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "enterfront",
"version": "0.5.1",
"version": "0.5.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "enterfront",
"version": "0.5.1",
"version": "0.5.2",
"dependencies": {
"@brojs/cli": "^1.0.0",
"@brojs/create": "^1.0.0",

View File

@ -29,5 +29,5 @@
"clean": "rimraf dist"
},
"name": "enterfront",
"version": "0.5.1"
"version": "0.5.2"
}

View File

@ -6,6 +6,7 @@ import LoginTitle from "../components/reg/loginTitle.jsx";
import {MessageType} from "../backend/notifications/message.tsx";
import {displayMessage} from "../backend/notifications/notifications.js";
import {post} from "../backend/api.js";
import {URLs} from "../__data__/urls";
const SignIn = () => {
const [name, setName] = useState("");
@ -37,7 +38,7 @@ const SignIn = () => {
setNameErrorsCounter(0);
localStorage.setItem('message', 'Successfully logged in!');
window.location.href = "/";
window.location.href = URLs.baseUrl;
}
return (

View File

@ -5,6 +5,7 @@ import LoginTitle from "../components/reg/loginTitle.jsx";
import {post} from "../backend/api";
import {displayMessage} from "../backend/notifications/notifications";
import {MessageType} from "../backend/notifications/message";
import { URLs } from "../__data__/urls";
const SignUp = () => {
@ -47,7 +48,7 @@ const SignUp = () => {
localStorage.setItem('username', name);
localStorage.setItem('message', 'Successfully signed up!');
window.location.href = "/";
window.location.href = URLs.baseUrl;
}
return (