From c716d73e22d3519f6db2bf06d0fcf995338e9fb9 Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Wed, 9 Apr 2025 16:59:11 +0100 Subject: [PATCH] login page started --- src/components/auth/LoginCom.jsx | 97 +++++++++++++++++++------------- 1 file changed, 59 insertions(+), 38 deletions(-) diff --git a/src/components/auth/LoginCom.jsx b/src/components/auth/LoginCom.jsx index 77c4e2f..3450a72 100644 --- a/src/components/auth/LoginCom.jsx +++ b/src/components/auth/LoginCom.jsx @@ -1,6 +1,6 @@ import React, { useEffect, useState } from 'react' import { useDispatch } from 'react-redux' -import { useLocation, useNavigate } from 'react-router-dom' +import { useLocation, useNavigate, Link } from 'react-router-dom' // import { useMutation } from '@tanstack/react-query' import Label from '../Label' @@ -12,6 +12,8 @@ import { updateUserDetails } from "../../store/UserDetails"; import GoogleDownload from '../../assets/download/andriod.jpg' import IOSDownload from '../../assets/download/apple.jpg' import RouteLinks from '../../RouteLinks' +import DummyLogo from '../DummyLogo' +import Icons from '../Icons' export default function LoginCom() { @@ -64,47 +66,66 @@ export default function LoginCom() { return ( <> -
-
-
-

Digifi BackOffice

-

Welcome back, please login to your account

+
+
+
+ {/* +

Dummy Text Here

*/}
-
-
-
-
- - {/* {login.error && - <> -
-

{login.error.message}

-
- - } */} - -
- {/* */} - -
- -
-
- - IOS Download - +
+
+
+

Sign In

+

Welcome back, please login to your account

-
- - IOS Download - + {/* social login */} +
+
+ + Sign in with Google +
+
+ + Sign in with Apple +
+ +
+

Or with email

+
+ +
+
+ +
+
+ +

Forget password ?

+
+
+ {/* */} + +
+
+ +

Not yet a member? Sign Up

+ +
+ Terms + Plans + Contact Us +
+ + + {/* {login.error && + <> +
+

{login.error.message}

+
+ + } */} +
-- 2.34.1