/login.php

https://bitbucket.org/denissilva/cgpdi_admin · PHP · 27 lines · 24 code · 3 blank · 0 comment · 0 complexity · 510a8e107f18d37dbe317ab5a470811a MD5 · raw file

  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <meta name="description" content="">
  7. <meta name="author" content="">
  8. <title>CGPDI Admin</title>
  9. <link href="css/bootstrap.min.css" rel="stylesheet">
  10. <link href="css/signin.css" rel="stylesheet">
  11. </head>
  12. <body class="text-center">
  13. <form class="form-signin" method="post" action="controller/login/logar.php">
  14. <img class="mb-4" src="img/logo.png" alt="" width="111" height="84">
  15. <h1 class="h3 mb-3 font-weight-normal">CGPDI Admin</h1>
  16. <label for="inputEmail" class="sr-only">E-mail</label>
  17. <input type="email" name="txtEmail" id="inputEmail" class="form-control" placeholder="E-mail" required="" autofocus="">
  18. <label for="inputPassword" class="sr-only">Senha</label>
  19. <input type="password" name="txtSenha" id="inputPassword" class="form-control" placeholder="Senha" required="">
  20. <button class="btn btn-lg btn-success btn-block" type="submit">Entrar</button>
  21. <p class="mt-5 mb-3 text-muted">© 2018</p>
  22. </form>
  23. </body>
  24. </html>