Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
feat: add class in html
Browse files Browse the repository at this point in the history
  • Loading branch information
GusBaamonde committed Apr 1, 2019
1 parent 2213f89 commit 3d0f27f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions assets/templates/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,24 +63,25 @@ <h5>Regístrate</h5>
<li class="field-item field-item--50 error">
<label for="name">Nombre:</label>
<input type="text" name="name" id="name" placeholder="Nombre">
<div class="wrapper-errors bounceIn">
<div class="wrapper-errors">
<p class="error-message">¡Ouch! Este campo está vacío</p>
</div>
</li>
<li class="field-item field-item--50 error">
<label for="lastname">Apellido:</label>
<input type="text" name="lastname" id="lastname" placeholder="Apellido">
<div class="wrapper-errors bounceIn">
<div class="wrapper-errors">
<p class="error-message">¡Ouch! Este campo está vacío</p>
</div>
</li>
</ul>
</li>
<li class="field-item error">
<li class="field-item">
<label for="phone">Teléfono:</label>
<input type="tel" name="phone" id="phone" placeholder="9 11 2345-6789">
<div class="wrapper-errors bounceIn">
<p class="error-message">¡Ouch! Este campo está vacío</p>
<input type="tel" name="phone" id="phone-input" placeholder="9 11 2345-6789" class="phone-number">
<!-- <span id="error-msg" class="error-phone-number hide"></span> -->
<div class="wrapper-errors">
<p class="error-message error-phone-number">¡Ouch! Este campo está vacío</p>
</div>
</li>
</ul>
Expand All @@ -91,7 +92,7 @@ <h5>Regístrate</h5>
<li class="field-item error">
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="Tu Email será tu nombre de usuario">
<div class="wrapper-errors bounceIn">
<div class="wrapper-errors">
<p class="error-message">¡Ouch! Este campo está vacío</p>
</div>
</li>
Expand All @@ -113,7 +114,7 @@ <h5>Regístrate</h5>
<li class="field-item field-item__checkbox error">
<input type="checkbox" name="acepto_politicas">
<span class="checkmark"></span><label for="acepto_politicas"> Acepto la <a class="link-green" href="#">Política de Privacidad</a> de Doppler.</label>
<div class="wrapper-errors bounceIn">
<div class="wrapper-errors">
<p class="error-message">¡Ouch! Este campo está vacío</p>
</div>
</li>
Expand Down Expand Up @@ -148,8 +149,7 @@ <h3>Crea Emails en minutos y accede a nuestra Galería de Plantillas</h3>
</section><!-- feature panel-->
</main>
<!-- build:js:dist js/app.js -->
<script src="./js/main.js"></script>
<script src="./js/main.js"></script>
<!-- /build -->
</body>

</html>

0 comments on commit 3d0f27f

Please sign in to comment.