forked from orson/bachemap
19 lines
649 B
HTML
19 lines
649 B
HTML
<form method="POST" action="/">
|
|
|
|
<input type="submit" value="Go">
|
|
</form>
|
|
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{{ form.hidden_tag() }}
|
|
<div class="form-group">
|
|
{{form.author.label}} {{form.author(class="form-control")}}
|
|
{{form.img.label}} {{form.img()}}
|
|
{{form.latitude()}}
|
|
{{form.longitude()}}
|
|
{{form.message.label}}{{form.message(class="form-control")}}
|
|
<button type="button" name="whereami" id="whereami">Ubicación actual</button>
|
|
{{form.submit(class="submit-btn")}}
|
|
</div>
|
|
{{ form.csrf_token }}
|
|
{{ form.name.label }} {{ form.name(size=20) }}
|
|
</form> |