10 Commits

Author SHA1 Message Date
victorAnumudu 1be78e7484 centralized login and removed image 2023-04-14 15:14:31 +01:00
tokslaw 9103a812b5 Merge branch 'changed-loading-icon' of FloatSystems/float-users into master 2023-04-12 11:19:45 +00:00
victorAnumudu 7dc8503861 loading icon changed 2023-04-11 18:34:48 +01:00
tokslaw a819bcca1f Merge branch 'bg-color-cover' of FloatSystems/float-users into master 2023-04-11 17:18:47 +00:00
victorAnumudu 161bac928b removed image shadow 2023-04-11 18:04:12 +01:00
victorAnumudu 40834b9c38 made the bg color to cover all page 2023-04-11 15:37:37 +01:00
victorAnumudu 7a823fcf74 made the bg color to cover all page 2023-04-11 15:34:16 +01:00
DESKTOP-GBA0BK8\Admin faa4fdf8a6 demo pass changed 2023-04-08 14:48:15 -04:00
DESKTOP-GBA0BK8\Admin a33d405c8c Fix links 2023-04-08 10:41:39 -04:00
tokslaw 56570fbd33 Merge branch 'random_bg' of FloatSystems/float-users into master 2023-04-07 23:15:46 +00:00
6 changed files with 14 additions and 63 deletions
+1 -1
View File
@@ -36,7 +36,7 @@
<div id="root"></div> <div id="root"></div>
<div id="splash-screen" class="splash-screen"> <div id="splash-screen" class="splash-screen">
<img src="%PUBLIC_URL%/media/logos/default-small.svg" alt="WrenchBoard" /> <img src="%PUBLIC_URL%/media/logos/favicon.ico" alt="Float Users" />
<span>Loading ...</span> <span>Loading ...</span>
</div> </div>
<div id="root-modals"></div> <div id="root-modals"></div>
+4
View File
@@ -0,0 +1,4 @@
.auth-height {
min-height: 100vh;
}
+1
View File
@@ -13,3 +13,4 @@
@import "content"; @import "content";
@import "toolbar"; @import "toolbar";
@import "page-title"; @import "page-title";
@import "auth";
+3 -57
View File
@@ -54,9 +54,9 @@ const AuthLayout = () => {
}, []) }, [])
return ( return (
<div className='d-flex flex-column flex-lg-row flex-column-fluid overflow-auto'> <div className='auth-height d-flex flex-column flex-lg-row flex-column-fluid' style={{backgroundImage: `${bgColor.backgroundImage}`}}>
{/* begin::Body */} {/* begin::Body */}
<div className='d-flex flex-column flex-lg-row-fluid w-lg-50 p-10 order-2 order-lg-1 vh-100'> <div className='d-flex flex-column flex-lg-row-fluid w-lg-50 p-10 order-2 order-lg-1'>
{/* begin::Form */} {/* begin::Form */}
<div className='d-flex flex-center flex-column flex-lg-row-fluid'> <div className='d-flex flex-center flex-column flex-lg-row-fluid'>
<div className='text-center mb-11'> <div className='text-center mb-11'>
@@ -64,7 +64,7 @@ const AuthLayout = () => {
<img alt='Float Mobility' src={toAbsoluteUrl('/media/logos/logo.png')} className='h-35px' /> <img alt='Float Mobility' src={toAbsoluteUrl('/media/logos/logo.png')} className='h-35px' />
</div> </div>
{/* begin::Wrapper */} {/* begin::Wrapper */}
<div className='w-lg-500px p-10'> <div className='bg-white w-lg-500px p-10 shadow-lg rounded'>
<Outlet /> <Outlet />
</div> </div>
{/* end::Wrapper */} {/* end::Wrapper */}
@@ -99,60 +99,6 @@ const AuthLayout = () => {
</div> </div>
{/* end::Body */} {/* end::Body */}
{/* begin::Aside */}
<div
className='position-relative d-flex flex-lg-row-fluid w-lg-50 p-10 order-1 order-lg-2'
style={{backgroundImage: `${bgColor.backgroundImage}`}}
>
{/* begin::Content */}
<div className='position-relative d-flex flex-column flex-center px-5 px-md-15 w-100'>
{/* begin::Logo */}
<Link to='/' className='mb-12'>
<img alt='Float Mobility' src={toAbsoluteUrl('/media/logos/logo.png')} className='h-35px' />
</Link>
{/* end::Logo */}
{/* <img
className='mx-auto w-350px w-md-50 w-xl-500px mb-10 mb-lg-20 rounded'
src={toAbsoluteUrl('/media/misc/auth-bg-new.png')}
alt=''
style={{boxShadow: '0px 0px 10px white'}}
/> */}
<div className='mx-auto w-75 w-xl-500px mb-10 mb-lg-20 rounded'>
<img
className='img-fluid rounded'
src={toAbsoluteUrl('/media/misc/auth-bg-new.png')}
alt=''
style={{boxShadow: '0px 0px 10px white'}}
/>
</div>
{/* end::Image */}
<div className='w-100 w-md-75'>
{/* begin::Title */}
<h1 className='text-dark fs-2qx fw-bolder text-center mb-7'>
Fast, Efficient and Productive
</h1>
{/* end::Title */}
{/* begin::Text */}
<div className='text-dark fs-base text-center'>
In this kind of post,{' '}
<a href='#' className='opacity-75-hover text-warning fw-bold me-1'>
the blogger
</a>
introduces a person theyve interviewed <br /> and provides some background information
about {' '}
<a href='#' className='opacity-75-hover text-warning fw-bold me-1'>
the interviewee
</a>
and their <br /> work following this is a transcript of the interview.
</div>
{/* end::Text */}
</div>
</div>
{/* end::Content */}
</div>
{/* end::Aside */}
</div> </div>
) )
} }
+3 -3
View File
@@ -21,10 +21,10 @@ const loginSchema = Yup.object().shape({
}) })
const initialValues = { const initialValues = {
email: 'admin@demo.com', email: 'demo@float.sg',
password: 'demo', password: '****',
} }
//email: 'admin@demo.com',
/* /*
Formik+YUP+Typescript: Formik+YUP+Typescript:
https://jaredpalmer.com/formik/docs/tutorial#getfieldprops https://jaredpalmer.com/formik/docs/tutorial#getfieldprops
@@ -309,7 +309,7 @@ export function Registration() {
<span> <span>
I Accept the{' '} I Accept the{' '}
<a <a
href='https://keenthemes.com/metronic/?page=faq' href='#'
target='_blank' target='_blank'
className='ms-1 link-primary' className='ms-1 link-primary'
> >