Skip to content
Snippets Groups Projects
Commit e1effea0 authored by Ben Adida's avatar Ben Adida
Browse files

loading gif, spacing, updated emails

parent 7aba0187
No related branches found
No related tags found
No related merge requests found
Subproject commit b70bdb6c07059fe22b073a6f6b2854e00ea12e95
Subproject commit b83b4f96b3c4f717eece96f054b5e287a19a4c7d
......@@ -36,6 +36,7 @@
</div>
{% block content %}{% endblock %}
<div id="footer">
<br /><br />
<em>This web site is not endorsed by the IACR. It is only meant for demonstration purposes.</em>
</div>
</div>
......
......@@ -2,6 +2,16 @@
{% block title %}Confirm Vote{% endblock %}
{% block content %}
<script language="javascript">
$(document).ready(function() {
$('#waiting_div').hide();
});
function show_waiting() {
$('#cast_div').hide();
$('#waiting_div').show();
}
</script>
<h1>Confirm your Vote</h1>
{% if error %}
......@@ -14,9 +24,10 @@
<tt>{{vote_fingerprint}}</tt>
</p>
<div id="cast_div">
<h3>Cast Your Ballot with your Credentials</h3>
<form method="post" action="">
<form method="post" onsubmit="show_waiting();" action="">
<input type="hidden" name="csrf_token" value="{{csrf_token}}" />
<table>
......@@ -29,4 +40,11 @@
<p>
Forgot your password? <a href="{% url auth.auth_systems.password.password_forgotten_view %}?return_url={% url iacr.views.cast_confirm %}">Have it emailed to you</a>.<br />(don't worry, we won't forget your vote).
</p>
</div>
<div id="waiting_div" align="center">
Verifying and Casting your ballot<br />
<img src="/static/helios/loading.gif" />
</div>
{% endblock %}
......@@ -34,7 +34,8 @@ def home(request):
'openreg': False,
'admin' : helios.ADMIN,
'tally_type': 'homomorphic',
'ballot_type': 'homomorphic'
'ballot_type': 'homomorphic',
'use_voter_aliases': True
}
election = get_election()
......
......@@ -126,6 +126,5 @@ DEBUG = True
TEMPLATE_DEBUG = True
URL_HOST = "https://iacr-helios.appspot.com"
URL_HOST = ""
IACR_ELECTION_UUID = 'iacr'
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment