Skip to content

Commit

Permalink
Merge pull request #51 from Genesis-Solutions/00-client-register-page…
Browse files Browse the repository at this point in the history
…-footer

00 client register page footer
  • Loading branch information
CristianA01702752 committed May 23, 2023
2 parents 6da52bf + b530fe8 commit 2997ceb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions GomezMorinFrontEnd/src/pages/Login/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ const Login = () => {
};

return (
<div className="w-full h-full grid grid-cols-1 md:grid-cols-2 ">
<div className="w-full grid grid-cols-1 lg:grid-cols-2 md:grid-cols-1 ">
<div className=" h-full mx-14 mt-4">
<div className=" flex justify-start mt-8 ml-32">
<div className=" flex lg:justify-start md:justify-center sm:justify-start lg:ml-32 ml-32 md:ml-5 mt-8">
<IconTitle image={hexagono} headerText="Iniciar Sesión" />
</div>
<FormProvider {...methods}>
Expand Down Expand Up @@ -78,7 +78,7 @@ const Login = () => {
</form>
</FormProvider>
</div>
<div className="md:flex-1 md:bg-login md:bg-cover md:bg-center md:bg-no-repeat md:h-screen"></div>
<div className="lg:flex-1 lg:bg-login lg:bg-cover lg:bg-center lg:bg-no-repeat lg:h-screen"></div>
</div>
);
};
Expand Down
8 changes: 4 additions & 4 deletions GomezMorinFrontEnd/src/pages/Register/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ const Register = () => {
};

return (
<div className="w-full h-full grid xl:grid-cols-2 lg:grid-cols-2 md:grid-cols-2 sm:grid-cols-1 mb-6">
<div className=" h-full grid grid-rows-7 mx-14 mt-4">
<div className="w-full grid lg:grid-cols-2 md:grid-cols-1 sm:grid-cols-1 mb-6">
<div className="h-full grid grid-rows-7 mx-14 mt-4">
<div className="flex justify-center ">
<IconTitle image={hexagono} headerText="Registrarse" />
</div>
<FormProvider {...methods}>
<form onSubmit={methods.handleSubmit(onSubmitUser)}>
<div className="">
<div>
<CheckBoxInput
label="Soy persona moral"
name="isMoralRegister"
Expand Down Expand Up @@ -126,7 +126,7 @@ const Register = () => {
</form>
</FormProvider>
</div>
<div className="md:flex-1 md:bg-login md:bg-cover md:bg-center md:bg-no-repeat md:h-screen"></div>
<div className="lg:flex-1 lg:bg-login lg:bg-cover lg:bg-center lg:bg-no-repeat lg:h-screen"></div>
</div>
);
};
Expand Down

0 comments on commit 2997ceb

Please sign in to comment.