summaryrefslogtreecommitdiff
path: root/front/src/Authentication/LoginPage.tsx
diff options
context:
space:
mode:
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>
);
}