21 lines
629 B
HTML
21 lines
629 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 /><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 %}
|