forms
This commit is contained in:
parent
fa6faf1752
commit
d1138fa87e
|
@ -37,8 +37,6 @@ GEM
|
||||||
jekyll (>= 3.7, < 5.0)
|
jekyll (>= 3.7, < 5.0)
|
||||||
jekyll-sass-converter (3.0.0)
|
jekyll-sass-converter (3.0.0)
|
||||||
sass-embedded (~> 1.54)
|
sass-embedded (~> 1.54)
|
||||||
jekyll-seo-tag (2.8.0)
|
|
||||||
jekyll (>= 3.8, < 5.0)
|
|
||||||
jekyll-watch (2.2.1)
|
jekyll-watch (2.2.1)
|
||||||
listen (~> 3.0)
|
listen (~> 3.0)
|
||||||
kramdown (2.4.0)
|
kramdown (2.4.0)
|
||||||
|
@ -50,10 +48,6 @@ GEM
|
||||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||||
rb-inotify (~> 0.9, >= 0.9.10)
|
rb-inotify (~> 0.9, >= 0.9.10)
|
||||||
mercenary (0.4.0)
|
mercenary (0.4.0)
|
||||||
minima (2.5.1)
|
|
||||||
jekyll (>= 3.5, < 5.0)
|
|
||||||
jekyll-feed (~> 0.9)
|
|
||||||
jekyll-seo-tag (~> 2.1)
|
|
||||||
pathutil (0.16.2)
|
pathutil (0.16.2)
|
||||||
forwardable-extended (~> 2.6)
|
forwardable-extended (~> 2.6)
|
||||||
public_suffix (5.0.3)
|
public_suffix (5.0.3)
|
||||||
|
@ -80,7 +74,6 @@ DEPENDENCIES
|
||||||
jekyll (~> 4.3.2)
|
jekyll (~> 4.3.2)
|
||||||
jekyll-archives
|
jekyll-archives
|
||||||
jekyll-feed (~> 0.12)
|
jekyll-feed (~> 0.12)
|
||||||
minima (~> 2.5)
|
|
||||||
tzinfo (>= 1, < 3)
|
tzinfo (>= 1, < 3)
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
wdm (~> 0.1.1)
|
wdm (~> 0.1.1)
|
||||||
|
|
|
@ -0,0 +1,73 @@
|
||||||
|
<div class="envArquivo" style="height: 100vh; width: 100vw;">
|
||||||
|
<h1> Enviar Aula</h1>
|
||||||
|
|
||||||
|
<form action="submit_class.php" method="post">
|
||||||
|
<!-- Nome da Aula -->
|
||||||
|
<div class="field">
|
||||||
|
<label class="label" for="class_name">Nome da Aula</label>
|
||||||
|
<div class="control">
|
||||||
|
<input class="input" type="text" id="class_name" name="class_name" required>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Autor -->
|
||||||
|
<div class="field">
|
||||||
|
<label class="label" for="author">Autor</label>
|
||||||
|
<div class="control">
|
||||||
|
<input class="input" type="text" id="author" name="author" required>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Descrição -->
|
||||||
|
<div class="field">
|
||||||
|
<label class="label" for="description">Descrição</label>
|
||||||
|
<div class="control">
|
||||||
|
<textarea class="textarea" id="description" name="description" rows="4" required></textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Software Usado -->
|
||||||
|
<div class="field">
|
||||||
|
<label class="label" for="software">Software Usado</label>
|
||||||
|
<div class="control">
|
||||||
|
<input class="input" type="text" id="software" name="software" required>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Nível -->
|
||||||
|
<div class="field">
|
||||||
|
<label class="label" for="level">Nível</label>
|
||||||
|
<div class="control">
|
||||||
|
<div class="select">
|
||||||
|
<select id="level" name="level" required>
|
||||||
|
<option value="basico">Básico</option>
|
||||||
|
<option value="intermediario">Intermediário</option>
|
||||||
|
<option value="avancado">Avançado</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Botão de Enviar -->
|
||||||
|
<div class="field">
|
||||||
|
<div class="control">
|
||||||
|
<button class="button is-primary" type="submit">Enviar</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.envArquivo{
|
||||||
|
display: flex;
|
||||||
|
align-items: start;
|
||||||
|
justify-content: start;
|
||||||
|
flex-direction: column;
|
||||||
|
margin: 0 30px;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
title: Formulario de Aula
|
||||||
|
lang: pt
|
||||||
|
---
|
||||||
|
|
||||||
|
{% include formularios/envAula.html %}
|
Loading…
Reference in New Issue