1
0
forked from orson/bachemap
bachemap/templates/add_pin.html

25 lines
1.0 KiB
HTML

<form method="post" enctype="multipart/form-data" >
{{ form.hidden_tag() }}
<!--<p>
{{ form.description.label }}<br>
{{ form.description(size=32) }}
</p>-->
{{ form.description.label }}
{{ form.description }}
{{ form.photo.label }}
{{ form.photo() }}
{{ form.typeofpin }}
<label>Coordenadas</label>
<div role="group">
<input type="text" id="lat" name="lat" readonly>
<input type="text" id="lng" name="lng" readonly>
</div>
<table style="background-color: rgba(0,0,0,0);">
<tr style="background-color: transparent;">
<td style="background-color:transparent">{{ form.submit() }}</td>
<td style="background-color:transparent"><button style="background-color: red; color:white" id="cancel-add" type="button">Cancelar</button></td>
</tr>
</table>
</form>