Boilerplate added for register, non functional

This commit is contained in:
Hollgy 2024-03-13 17:56:04 +01:00
parent 3a7663124d
commit a4b19e32eb
4 changed files with 98 additions and 2 deletions

View file

@ -3,6 +3,7 @@ import Logo from "/src/assets/TTIMElogo.png";
import "./LoginPage.css";
import { useEffect } from "react";
import { Link } from "react-router-dom";
import Register from "../Components/Register";
const PreloadBackgroundAnimation = (): JSX.Element => {
useEffect(() => {
@ -69,6 +70,14 @@ function LoginPage(): JSX.Element {
}}
/>
</Link>
<Link to="/register">
<Button
text="Register new user"
onClick={(): void => {
return;
}}
/>
</Link>
</div>
</div>
</>