From 164b76fad806b078aad8c537ba9bdcfbfc757dca Mon Sep 17 00:00:00 2001 From: physcik Date: Tue, 5 May 2026 11:39:54 +0500 Subject: css changes + error handling --- front/src/Authentication/ForbiddenPage.tsx | 15 ++++++++++++++ front/src/Authentication/LoginPage.tsx | 18 +++++++++-------- front/src/Authentication/RegisterPage.tsx | 17 +++++++++++----- front/src/Authentication/style.css | 32 ++++++++++++++++++++++++++++++ 4 files changed, 69 insertions(+), 13 deletions(-) create mode 100644 front/src/Authentication/ForbiddenPage.tsx create mode 100644 front/src/Authentication/style.css (limited to 'front/src/Authentication') diff --git a/front/src/Authentication/ForbiddenPage.tsx b/front/src/Authentication/ForbiddenPage.tsx new file mode 100644 index 0000000..477940d --- /dev/null +++ b/front/src/Authentication/ForbiddenPage.tsx @@ -0,0 +1,15 @@ +import { useContext } from "react"; +import { LanguageContext } from "../Locales/Context"; +import { GetLocalizedString } from "../Locales/Locales"; + +function ForbidenPage() { + const lang = useContext(LanguageContext); + return ( +
+

{ GetLocalizedString("Forbidden", lang) }

+

{ GetLocalizedString("*forbidden*", lang) }

+
+ ); +} + +export default ForbidenPage; diff --git a/front/src/Authentication/LoginPage.tsx b/front/src/Authentication/LoginPage.tsx index e673418..7a555fe 100644 --- a/front/src/Authentication/LoginPage.tsx +++ b/front/src/Authentication/LoginPage.tsx @@ -28,20 +28,22 @@ function LoginPage() { return (
-

{ GetLocalizedString("Username", lang) }

- setUsername(ev.target.value)} /> -

{ GetLocalizedString("Password", lang) }

- setPassw(ev.target.value)} /> - - - -

Don't have an account? Click here.

); } diff --git a/front/src/Authentication/RegisterPage.tsx b/front/src/Authentication/RegisterPage.tsx index 5c818f6..10864cd 100644 --- a/front/src/Authentication/RegisterPage.tsx +++ b/front/src/Authentication/RegisterPage.tsx @@ -1,3 +1,4 @@ +import './style.css'; import axios, { AxiosError } from "axios"; import { useContext, useState } from "react"; import { useNavigate } from "react-router"; @@ -30,10 +31,15 @@ function RegisterPage() { return (
-

{ GetLocalizedString("Username", lang) }

- setUsername(ev.target.value)} /> -

{ GetLocalizedString("Password", lang) }

- setPassw(ev.target.value)} /> +
+

{ GetLocalizedString("Username", lang) }

+ setUsername(ev.target.value)} /> +
+

{ GetLocalizedString("*security-warning*", lang) }

+
+

{ GetLocalizedString("Password", lang) }

+ setPassw(ev.target.value)} /> +