ref: master
core/templates/new_group.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 51 52 53 54 55 56 57 58 59 60 61 62 |
{% extends 'layout.html' %}
{% block body %}
<section class="messages">
{% with messages = get_flashed_messages() %}
{% if messages %}
<section>
{{ messages[0] }}
</section>
{% endif %}
{% endwith %}
</section>
<form action='{{ url_for('groups.index') }}' method="POST">
<fieldset class="umbo-fieldset">
<legend class="legend-xl umbo-fieldset-legend">
<h1> Quais as informações básicas desse fornecedor? </h1>
</legend>
<span class="hint">
Nome, onde eles se localizam
</span>
<div class="umbo-form-group">
<label class="umbo-label" for="name">Nome do Fornecedor</label>
<input class="umbo-input" type="text" placeholder="Gonçalo" name="name">
</div>
<div class="umbo-form-group">
<label class="umbo-label" for="location">Localização</label>
<input class="umbo-input" type="text" placeholder="Pelotas, RS" name="location">
</div>
</fieldset>
<fieldset class="umbo-fieldset">
<legend class="legend-xl umbo-fieldset-legend">
<h1>Informações adicionais sobre a Localização</h1>
</legend>
<span class="hint">
Essas informações são opcionais, mas nos ajudarão a marcar com precisão
</span>
<div class="umbo-form-group">
<label class="umbo-label" for="lat">Latitude Geográfica</label>
<input class="umbo-input" type="text" placeholder="-33.513" name="lat">
</div>
<div class="umbo-form-group">
<label class="umbo-label" for="lng">Longitude Geográfica</label>
<input class="umbo-input" type="text" placeholder="-54.122" name="lng">
</div>
</fieldset>
<div class="umbo-form-actions">
<button type="submit" rel="button">Criar Grupo </button>
</div>
</form>
{% endblock %}
|