Merge branch 'fixErrors' into dev

This commit is contained in:
francisco-solis99 2022-03-04 12:20:07 -06:00
commit cdab4b554d
2 changed files with 8 additions and 7 deletions

View file

@ -35,7 +35,7 @@
} }
.confirm__pass { .confirm__pass {
max-width: 1024px; max-width: 900px;
width: 90%; width: 90%;
padding: 20px; padding: 20px;
margin: 0 auto; margin: 0 auto;
@ -46,15 +46,15 @@
} }
.confirm__title { .confirm__title {
font-size: 2.4rem; font-size: 1.8rem;
line-height: 35px; line-height: 25px;
text-align: center; text-align: center;
font-weight: 500; font-weight: 500;
} }
.confirm__image-wrapper { .confirm__image-wrapper {
margin-top: 15px; margin-top: 15px;
width: 45%; width: 35%;
display: inline-block; display: inline-block;
} }
@ -98,7 +98,8 @@
} }
.confirm__btn { .confirm__btn {
width: 80%; width: 50%;
max-width: 200px;
height: 40px; height: 40px;
text-align: center; text-align: center;
margin: 0 auto; margin: 0 auto;

View file

@ -32,7 +32,7 @@
<?php require_once 'views/components/messages.php' ?> <?php require_once 'views/components/messages.php' ?>
<div class="wrapper__confirm"> <div class="wrapper__confirm">
<section class="confirm__pass"> <section class="confirm__pass">
<h2 class="confirm__title">Sentimos que tengas que irte</h2> <h3 class="confirm__title">Ingresa tu contraseña para completar la operación</h3>
<picture class="confirm__image-wrapper"> <picture class="confirm__image-wrapper">
<img src="/assets/images/EliminarPerfil.svg" alt="Buho triste" class="confirm__image"> <img src="/assets/images/EliminarPerfil.svg" alt="Buho triste" class="confirm__image">
</picture> </picture>
@ -50,7 +50,7 @@
<input type="password" id="confirm-password" name="confirm-password" minlenght="6" maxlenght="255" required class="pass__input"> <input type="password" id="confirm-password" name="confirm-password" minlenght="6" maxlenght="255" required class="pass__input">
</label> </label>
<input type="submit" name="confirm-password-form" value="Eliminar permanentemente" class="confirm__btn"> <input type="submit" name="confirm-password-form" value="Enviar" class="confirm__btn">
</form> </form>
</section> </section>
</div> </div>