Guest User

Untitled

a guest
Jan 7th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html lang="pt">
  4.  
  5. <head>
  6.     <meta charset="utf-8">
  7.     <title>ENTRAR</title>
  8.     <link rel="stylesheet" type="text/css" href="login.css">
  9. </head>
  10.  
  11. <body>
  12.     <form action="/action_page.php">
  13.         <div class="imgcontainer">
  14.             <img src="imgs/user.jpg" alt="Avatar" class="avatar">
  15.         </div>
  16.  
  17.         <div class="container">
  18.             <label><b>Nome do Usuário</b></label>
  19.             <input type="text" name="uname" placeholder="Introduzir Nome do Usuário" required>
  20.  
  21.             <label><b>Palavra-passe</b></label>
  22.             <input type="password" name="psw" placeholder="Introduzir Palavra-passe" required>
  23.  
  24.             <button type="submit">Entrar</button>
  25.             <input type="checkbox" checked="checked"> Lembrar-me           
  26.         </div>
  27.  
  28.         <div class="container" style="background-color: #f1f1f1">
  29.             <a href="registar.html" class="btn" role="button">Registar</a>
  30.         </div>
  31.  
  32.         <div class="container" style="background-color: #f1f1f1">
  33.             <a href="trabalho.html" class="btn" role="button">Cancelar</a>
  34.             <span class="psw">Esqueceu-se da <a href="#">Palavra-passe?</a></span>
  35.         </div>
  36.  
  37.     </form>
  38.  
  39.     <script>
  40.         // Get the modal
  41.         var modal = document.getElementById('id01');
  42.  
  43.         // When the user clicks anywhere outside of the modal, close it
  44.         window.onclick = function(event) {
  45.         if (event.target == modal) {
  46.         modal.style.display = "none";
  47.         }
  48.     }
  49.     </script>
  50.  
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment