2017-11-23 21:07:16 +11:00
{% extends templates['booth/base.html'] %}
{#
Eos - Verifiable elections
2018-01-08 16:38:28 +11:00
Copyright © 2017-18 RunasSudo (Yingtong Li)
2017-11-23 21:07:16 +11:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see < http: / / www . gnu . org / licenses / > .
#}
2018-01-08 16:38:28 +11:00
{% block helpbtn %}
{# Don't float – we want it to overlap with the image #}
< div style = "position: relative;" >
< button class = "tiny ui labeled icon teal button" style = "position: absolute; right: 0; z-index: 1; margin: 0;" onclick = "$('#modal-help').modal('show');" > < i class = "help circle icon" > < / i > Help< / button >
< / div >
{% endblock %}
2017-11-23 21:07:16 +11:00
{% block content %}
2018-01-08 16:38:28 +11:00
< img src = "/static/img/logo.png" style = "width: 100%; max-width: 500px; display: block; margin: 0 auto;" >
< img src = "/static/img/guide.png" style = "width: 100%; max-width: 500px; display: block; margin: 0 auto; margin-top: 1em;" >
{% endblock %}
{% block help %}
2017-12-05 20:10:26 +11:00
< p > Welcome to the {{ election.name }} voting booth.< / p >
2018-01-08 16:38:28 +11:00
< p > Follow the on-screen directions to prepare and cast your ballot in this {{ election.kind }}. The bar at the top of the page will show your progress. Please note that your ballot will < b > not be cast until< / b > you complete the final ‘Cast ballot’ stage and receive a < b > ‘smart ballot tracker’< / b > .< / p >
< p > If at any point you wish to return to a previous screen, click the ‘Back’ button.< / p >
{# < p > If you wish, you may disconnect your internet connection now while preparing your ballot, however you must re-connect your internet connection before logging in to cast your ballot.< / p > #}
2018-01-20 22:07:06 +11:00
< p > Click the ‘OK’ button below to close this help screen, then click the blue ‘Continue’ button to continue to the next step.< / p >
< p > If you require further assistance, contact your election administrator.< / p >
2017-11-23 21:07:16 +11:00
{% endblock %}
{% block buttons %}
2017-11-25 22:37:59 +11:00
< a href = "{{ election_base_url }}view" class = "ui left floated button" > Back< / a >
2017-11-23 21:07:16 +11:00
< button class = "ui right floated primary button" onclick = "nextTemplate();" > Continue< / button >
{% endblock %}