fix home page

This commit is contained in:
CHIEFSOFT\ameye
2024-04-23 18:28:10 -04:00
parent 019f2575bd
commit cdc4b5426b
5 changed files with 11 additions and 50 deletions
+9 -48
View File
@@ -71,54 +71,15 @@ export function Login() {
{/* begin::Login options */}
<div className="row g-3 mb-9">
{/* begin::Col */}
<div className="col-md-6">
{/* begin::Google link */}
<a
href="#"
className="btn btn-flex btn-outline btn-text-gray-700 btn-active-color-primary bg-state-light flex-center text-nowrap w-100"
>
<img
alt="Logo"
src={toAbsoluteUrl("media/svg/brand-logos/google-icon.svg")}
className="h-15px me-3"
/>
Sign in with Google
</a>
{/* end::Google link */}
</div>
{/* end::Col */}
{/* begin::Col */}
<div className="col-md-6">
{/* begin::Google link */}
<a
href="#"
className="btn btn-flex btn-outline btn-text-gray-700 btn-active-color-primary bg-state-light flex-center text-nowrap w-100"
>
<img
alt="Logo"
src={toAbsoluteUrl("media/svg/brand-logos/apple-black.svg")}
className="theme-light-show h-15px me-3"
/>
<img
alt="Logo"
src={toAbsoluteUrl("media/svg/brand-logos/apple-black-dark.svg")}
className="theme-dark-show h-15px me-3"
/>
Sign in with Apple
</a>
{/* end::Google link */}
</div>
{/* end::Col */}
</div>
{/* end::Login options */}
{/* begin::Separator */}
<div className="separator separator-content my-14">
<span className="w-125px text-gray-500 fw-semibold fs-7">
Or with email
</span>
{/*<span className="w-125px text-gray-500 fw-semibold fs-7">*/}
{/* Or with email*/}
{/*</span>*/}
</div>
{/* end::Separator */}
@@ -220,12 +181,12 @@ export function Login() {
</div>
{/* end::Action */}
<div className="text-gray-500 text-center fw-semibold fs-6">
Not a Member yet?{" "}
<Link to="/auth/registration" className="link-primary">
Sign up
</Link>
</div>
{/*<div className="text-gray-500 text-center fw-semibold fs-6">*/}
{/* Not a Member yet?{" "}*/}
{/* <Link to="/auth/registration" className="link-primary">*/}
{/* Sign up*/}
{/* </Link>*/}
{/*</div>*/}
</form>
);
}