Skip to content

Commit

Permalink
gil √
Browse files Browse the repository at this point in the history
  • Loading branch information
JPchipres committed Nov 28, 2022
1 parent 2dd1803 commit df95054
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
3 changes: 2 additions & 1 deletion login.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<div class="forms-container">
<div class="signin-signup">
<div>
<button onclick="recovery()"class="btnRecover"><i>He olvidado mi contraseña</i></button>
</div>
<form id="loginclient" class="sign-in-form">
<h2 class="title">Inicia Sesión</h2>
Expand All @@ -45,6 +44,8 @@
</div>

<input type="submit" value="Iniciar Sesión" class="btn solid" />
<a class="btnTerminos" id="politica">Política de Privacidad</a>
<a onclick="recovery()" class="btnRecover">¿Haz olvidado tu contraseña?</a>
</form>
<form id="loginadmin" class="sign-up-form">
<h2 class="title">Ejecutivo</h2>
Expand Down
23 changes: 23 additions & 0 deletions public/css/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -546,3 +546,26 @@ form.sign-in-form {
.input-correct{
background-color: rgba(152, 255, 35, 0.63);
}

.btnTerminos {
margin: 10px 0;
color: #696969;
cursor: pointer;
text-decoration: underline;
transition: all .3s;
font-size: 14px;
}
.btnRecover{
color: #696969;
cursor: pointer;
text-decoration: underline;
transition: all .3s;
font-size: 11px;
}
.btnRecover:hover {
color: #333;
}
.formRecovery {
display: flex;
flex-direction: column;
}

0 comments on commit df95054

Please sign in to comment.