Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>prueba</title>
</head>
<body>
    <form id="form" method="post" action="#">
        <label for="nombre">Nombre</label><br />
        <input id="nombre" 
               name="nombre" 
               type="text" 
               required="required" 
               pattern="[a-zA-zÑñáéíóúüÁÉÍÓÚÜ\s]+" 
               title="Sólo se permiten letras" 
               maxlength="50" 
               data-patron="1" /><br />
        <label id="err_nombre_valid" class="label_error">Este campo sólo admite letras</label>
 
        <label for="email">Email</label><br />
        <input id="email" 
               name="email" 
               type="text" 
               required="required" 
               pattern="^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+){0,}(\.[a-z]{2,4})$" 
               title="Dirección de correo electrónico válida" 
               data-patron="0" /><br />
        <label id="err_email_valid" class="label_error">Introduce un email válido</label> 
 
        <input id="boton_enviar" type="submit" title="Enviar" value="Enviar" />
    </form>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
Alexis88pro
0viewers