Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Forever</title>
  8. <link rel="stylesheet" href="./css/style-registro.css">
  9. <link href="https://fonts.googleapis.com/css?family=Playfair+Display&display=swap" rel="stylesheet">
  10. <link href="https://fonts.googleapis.com/css?family=Cinzel:700&display=swap" rel="stylesheet">
  11. </head>
  12. <body>
  13. <div class="shaiya">
  14. <img src="img/shaiya.png" alt="">
  15. </div>
  16.  
  17. <form action="php/validar.php" methos="post" onsubmit="return validar();">
  18. <div class="panel-principal">
  19. <div class="panel-registro">
  20. <label for="Registro"><br>REGISTRO</label>
  21. <input type="text" placeholder="Ingrese su ID del juego" id="username" name="username" autocomplete="off" maxlength="10">
  22.  
  23. <input type="password" placeholder="Ingrese una clave" id="password" name="password" autocomplete="off" maxlength="10">
  24.  
  25. <input type="password" placeholder="Repetir clave" id="rpassword" name="rpassword" autocomplete="off" maxlength="10">
  26.  
  27. <input type="text" placeholder="Ingrese un Email" id="email" name="email" autocomplete="off" maxlength="25">
  28.  
  29. <select name="pregunta" class="seleccion">
  30. <option value="Como se llama tu mejor amigo">Como se llama tu mejor amigo</option>
  31. <option value="En que pais has ido">En que pais has ido</option>
  32. <option value="Cual es el nombre de tu perro">Cual es el nombre de tu perro</option>
  33. <option value="Cual fue el mejor juego que tuvistes">Cual fue el meor juego que tuvistes</option>
  34. </select>
  35.  
  36. <input type="text" placeholder="Ingrese una respuesta" id="respuesta" name="respuesta" autocomplete="off" maxlength="25">
  37.  
  38. <button type="submit">Registrar</button>
  39.  
  40. <div class="alerta" id="alerta"></div>
  41. </div>
  42.  
  43. </div>
  44. </form>
  45.  
  46. </body>
  47. <script src="js/validar.js"></script>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement