explorer_login.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3. <head>
  4. <!-- Meta tags Obrigatórias -->
  5. <meta charset="utf-8" />
  6. <meta
  7. name="viewport"
  8. content="width=device-width, initial-scale=1, shrink-to-fit=no"
  9. />
  10. <!-- Bootstrap CSS -->
  11. <link rel="stylesheet" href="../assets/css/bootstrap.min.css" />
  12. <title>LInE Quest</title>
  13. <style>
  14. body {
  15. background-color: #e9ecef;
  16. }
  17. .page-header {
  18. margin-top: 1em;
  19. border-top: 1px solid rgb(155, 155, 155);
  20. padding-top: 0.5em;
  21. }
  22. .badge {
  23. font-size: 100%;
  24. }
  25. .form-div {
  26. margin: 2rem;
  27. width: 60vw;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div class="jumbotron" style="padding-bottom: 0;">
  33. <p style="float: right; color: #333; font-weight: 300;">
  34. Free Education, Private Data (FEPD)
  35. </p>
  36. <img src="../assets/img/logo.png" width="250px" />
  37. <p style="font-size: 21px; color: #333; font-weight: 300;">
  38. Plataforma para questionários
  39. </p>
  40. <hr/>
  41. </div>
  42. <div class="form-div">
  43. <h3 class="">Acessar os dados do seu questionário</h3>
  44. <form action="{post_url}" method="POST">
  45. <div class="form-group">
  46. <label for="email">Email</label>
  47. <input
  48. type="email"
  49. class="form-control"
  50. id="email"
  51. name="email"
  52. />
  53. <small id="emailHelp" class="form-text text-muted"
  54. >Email utilizado durante a criação do questionário.</small
  55. >
  56. </div>
  57. <div class="form-group">
  58. <label for="senha">Senha</label>
  59. <input
  60. id="senha"
  61. name="senha"
  62. type="password"
  63. class="form-control"
  64. />
  65. <small id="senhaHelp" class="form-text text-muted"
  66. >Código de acesso enviado ao seu email após a criação do questionário</small
  67. >
  68. </div>
  69. <button class="btn btn-primary" type="submit">Enviar</button>
  70. </form>
  71. </div>
  72. {errors}
  73. </body>
  74. </html>