123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <!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="">Criar questionário</h3>
- <h5>Todos os campos são obrigatórios!</h5>
- <form enctype="multipart/form-data" action="{post_url}" method="POST">
- <div class="form-group">
- <label for="email">Email</label>
- <input
- type="email"
- class="form-control"
- id="email"
- name="email"
- required="required"
- />
- <small id="emailHelp" class="form-text text-muted"
- >Email que receberá as informações de acesso ao questionário.</small
- >
- </div>
- <div class="form-group">
- <label for="title">Título</label>
- <input
- id="title"
- name="title"
- type="text"
- class="form-control"
- required="required"
- />
- <small id="titleHelp" class="form-text text-muted"
- >Título do seu questionário</small
- >
- </div>
- <div class="form-group">
- <label for="description">Apresentação</label>
- <textarea
- id="description"
- name="description"
- cols="15"
- rows="5"
- class="form-control"
- required="required"
- ></textarea>
- <small id="introHelp" class="form-text text-muted"
- >Essa apresentação será aprensetado no início do seu
- questionário.</small
- >
- </div>
- <div class="form-group">
- <label for="thanks">Agradecimento</label>
- <textarea
- id="thanks"
- name="thanks"
- cols="15"
- rows="5"
- class="form-control"
- required="required"
- ></textarea>
- <small id="thanksHelp" class="form-text text-muted"
- >Essa mensagem será aprensetada no final do seu questionário.</small
- >
- </div>
- <div class="form-group">
- <label for="formSource">Arquivo do questionário</label>
- <input
- type="file"
- class="form-control-file"
- id="formSource"
- name="formSource"
- required="required"
- />
- <small id="formksHelp" class="form-text text-muted">
- Faça o upload do arquivo de texto descrevendo seu formulário. Use este <a target="_blank" href="/guia.html">guia</a> em caso de dúvida.
- </small>
- </div>
- <button class="btn btn-primary" type="submit">Enviar</button>
- </form>
- </div>
- </body>
- </html>
|