diff --git a/helios/forms.py b/helios/forms.py index d54553a90cf534f3fc4013d73feb3821c06da278..13dc829f41ad95cc2ea70bdf1bcd5df800072663 100644 --- a/helios/forms.py +++ b/helios/forms.py @@ -37,6 +37,6 @@ class TallyNotificationEmailForm(forms.Form): send_to = forms.ChoiceField(label="Send To", choices= [('all', 'all voters'), ('voted', 'only voters who cast a ballot'), ('none', 'no one -- are you sure about this?')]) class VoterPasswordForm(forms.Form): - voter_id = forms.CharField(max_length=50) + voter_id = forms.CharField(max_length=50, label="Voter ID") password = forms.CharField(widget=forms.PasswordInput(), max_length=100) diff --git a/helios/templates/email/vote_body.txt b/helios/templates/email/vote_body.txt index fa0a4db4a82bc09d3f815e80210b5c4abc28dc5e..b0c6875c8bc10bb02968d968f76007157645722e 100644 --- a/helios/templates/email/vote_body.txt +++ b/helios/templates/email/vote_body.txt @@ -5,7 +5,7 @@ Dear {{voter.name}}, Election URL: {{election_url}} Election Fingerprint: {{voter.election.hash}} {% ifequal voter.voter_type "password" %} -Your username: {{voter.voter_login_id}} +Your voter ID: {{voter.voter_login_id}} Your password: {{voter.voter_password}} {% else %} Log in with your {{voter.voter_type}} account.