Files
abot/templates/vote.html
Ville Rantanen 51e4787e40 value consistency
2018-12-13 22:27:25 +02:00

21 lines
643 B
HTML

{% extends "layout.html" %}
{% block body %}
<div id="vote_header">Voting ends at: {{ valid_for }}</div>
<form id="vote_form" action="{{ url_for('save_vote') }}" method=post >
<input type=hidden value="{{ key|safe }}" name=key />
<input type=hidden value="{{ token|safe }}" name=token />
{% include "questions.html" %}
<p>
<input type=submit name=submit value="Submit"/><br>
<div class = "warning">
You can only vote once!
<ul>
<li>Votes can not be edited later</li>
<li>Empty choices counts as empty, used vote</li>
</ul>
</div>
</p>
</form>
{% endblock %}