From b9dce0981474ab85f49ef07bbd3289f2b5eaaf4f Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Tue, 16 Aug 2011 21:10:47 +0200 Subject: [PATCH] Clarify that we want a repeat email --- pgweb/account/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgweb/account/forms.py b/pgweb/account/forms.py index 1e623436..08abb280 100644 --- a/pgweb/account/forms.py +++ b/pgweb/account/forms.py @@ -7,7 +7,7 @@ class SignupForm(forms.Form): first_name = forms.CharField(max_length=30) last_name = forms.CharField(max_length=30) email = forms.EmailField() - email2 = forms.EmailField() + email2 = forms.EmailField(label="Repeat email") def clean_email2(self): # If the primary email checker had an exception, the data will be gone