You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
860 B
HTML
34 lines
860 B
HTML
2 years ago
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block main %}
|
||
|
{% from "_formhelpers.html" import render_field %}
|
||
|
|
||
|
<h1 class="page-header">Add Message</h1>
|
||
|
{% with messages = get_flashed_messages() %}
|
||
|
{% if messages %}
|
||
|
<div class="alert alert-danger">
|
||
|
<ul>
|
||
|
{% for message in messages %}
|
||
|
<li>{{ message }}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
{% endwith %}
|
||
|
<form method="POST" action="{{ url_for('addtext') }}" enctype=multipart/form-data>
|
||
|
{{ form.csrf_token }}
|
||
|
<input type="hidden" name="longitude" value="{{ longitude }}" />
|
||
|
<input type="hidden" name="latitude" value="{{ latitude }}" />
|
||
|
<div style="width: 40%;">
|
||
|
message: {{ form.message(cols="45", rows="10", class="form-control") }}
|
||
|
</div>
|
||
|
|
||
|
<button type="submit">Submit</button>
|
||
|
|
||
|
|
||
|
</form>
|
||
|
|
||
|
<clear>
|
||
|
{% endblock main %}
|
||
|
|