Advertisement
Guest User

login.html.ep

a guest
Sep 4th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.25 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Gerador de Relatórios - Cibernix Tecnologia</title>
  6.     <link rel="stylesheet" type="text/css" href="../css/reset.css"/>
  7.     <link rel="stylesheet" type="text/css" href="../css/login.css"/>
  8. </head>
  9. <body>
  10.     <div id='caixa-login-logo'>
  11.         <img id="img-logo" src="../img/cibernix-logo-login.png" alt="Logo Cibernix" />
  12.     </div>
  13.     <div id="caixa-login">
  14.         <div id="login-titulo">
  15.             Bem-vindo ao Gerador de Relatório da Cibernix
  16.         </div>
  17.         <div id="login-dados">
  18.             <form name="frm-login" method="POST">
  19.             <div class="coluna">
  20.                 <label for="usuario">* Usuário:</label>
  21.                 <input type="text" id="usuario" name="usuario" />
  22.             </div>
  23.             <div class="coluna">
  24.                 <label for="senha">* Senha:</label>
  25.                 <input type="password" id="senha" name="senha" />
  26.             </div>
  27.             <div class="coluna">
  28.                 <label id="lbl-login" for="btn-login">Login</label>
  29.                 <input type="submit" id="btn-login" value="Login" name="btn-login" />
  30.             </div>
  31.             </form>
  32.         </div>        
  33.     </div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement