summaryrefslogtreecommitdiff
path: root/front/src/Authentication/LoginPage.tsx
diff options
context:
space:
mode:
authorphyscik <mynameisgennadiy@vk.com>2026-05-03 21:26:49 +0500
committerphyscik <mynameisgennadiy@vk.com>2026-05-03 21:26:49 +0500
commite02f7ee46876d32ca094c2b5cf3647248baf7645 (patch)
tree7f81450d2ccbcb4fea241a0925b45d9385ae7192 /front/src/Authentication/LoginPage.tsx
parent533c04d9558bd0a575671c157ca42236f59a2c5a (diff)
Register page + logout
Diffstat (limited to 'front/src/Authentication/LoginPage.tsx')
-rw-r--r--front/src/Authentication/LoginPage.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/front/src/Authentication/LoginPage.tsx b/front/src/Authentication/LoginPage.tsx
index e98c506..e673418 100644
--- a/front/src/Authentication/LoginPage.tsx
+++ b/front/src/Authentication/LoginPage.tsx
@@ -3,7 +3,6 @@ import { useContext, useState } from "react";
import { useNavigate } from "react-router";
import { BackendURL } from "../Config";
import { Authentication, SaveState } from "./ContextProvider";
-import { useCookies } from 'react-cookie';
import { GetLocalizedString } from "../Locales/Locales";
import { LanguageContext } from "../Locales/Context";
@@ -40,6 +39,9 @@ function LoginPage() {
window.location.reload();
});
}}> { GetLocalizedString("Log in", lang) } </button>
+
+
+ <p> Don't have an account? <a href="/register"> Click here. </a> </p>
</div>
);
}