1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!DOCTYPE html>
- <html lang="pt-br">
- <head>
- <!-- Meta tags Obrigatórias -->
- <meta charset="utf-8" />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1, shrink-to-fit=no"
- />
- <!-- Bootstrap CSS -->
- <link rel="stylesheet" href="../assets/css/bootstrap.min.css" />
- <title>LInE Quest</title>
- <style>
- body {
- background-color: #e9ecef;
- }
- .page-header {
- margin-top: 1em;
- border-top: 1px solid rgb(155, 155, 155);
- padding-top: 0.5em;
- }
- .badge {
- font-size: 100%;
- }
- .form-div {
- margin: 2rem;
- width: 60vw;
- }
- </style>
- </head>
- <body>
- <div class="jumbotron" style="padding-bottom: 0;">
- <p style="float: right; color: #333; font-weight: 300;">
- Free Education, Private Data (FEPD)
- </p>
- <img src="../assets/img/logo.png" width="250px" />
- <p style="font-size: 21px; color: #333; font-weight: 300;">
- Plataforma para questionários
- </p>
- <hr/>
- </div>
- <div class="form-div">
- <h3 class="">Acessar os dados do seu questionário</h3>
- <form action="{post_url}" method="POST">
- <div class="form-group">
- <label for="email">Email</label>
- <input
- type="email"
- class="form-control"
- id="email"
- name="email"
- />
- <small id="emailHelp" class="form-text text-muted"
- >Email utilizado durante a criação do questionário.</small
- >
- </div>
- <div class="form-group">
- <label for="senha">Senha</label>
- <input
- id="senha"
- name="senha"
- type="password"
- class="form-control"
- />
- <small id="senhaHelp" class="form-text text-muted"
- >Código de acesso enviado ao seu email após a criação do questionário</small
- >
- </div>
- <button class="btn btn-primary" type="submit">Enviar</button>
- </form>
- </div>
- {errors}
- </body>
- </html>
|