forked from HarvardOpenData/HarvardOpenData.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
submit.html
50 lines (47 loc) · 1.68 KB
/
submit.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
title: Submit
layout: default
permalink: /submit/
---
<div class="container">
<h1 class="page-title centered">Adicione Dados</h1>
<p class="lead">
Contribua adicionando uma base de dados que encontrou por aí. Não
se esqueça que ela deve ser relacionada com a universidade.
</p>
<div class="col-md-12">
<form method="post" class="form-horizontal" action="https://formspree.io/[email protected]">
</div>
<div class="form-group row">
<div class="col-sm-6">
<label for="dataset-title">Nome da Base de Dados:</label>
<input type="text" class="form-control" id="dataset-title" name="dataset-title">
</div>
</div>
<div class="form-group row">
<div class="col-sm-6">
<label for="dataset-link">Link da Base de Dados:</label>
<input type="text" class="form-control" id="dataset-link" name="dataset-link">
</div>
</div>
<div class="form-group row">
<div class="col-sm-6">
<label for="dataset-cat">Categoria:</label>
<select class="form-control" id="dataset-category" name="dataset-category">
{% for category in site.data.categories %}
<option>
{{ category.name }}
</option>
{% endfor %}
<option>
Other
</option>]
</select>
</div>
</div>
<br/>
<button type="submit" class="btn btn-primary">Contribua!</button>
</form>
</div>
</div>
</div>