diff --git a/concordia/forms.py b/concordia/forms.py index cb5db1883..09d470198 100644 --- a/concordia/forms.py +++ b/concordia/forms.py @@ -45,8 +45,12 @@ def save(self, commit=True): class UserRegistrationForm(RegistrationForm): newsletterOptIn = forms.BooleanField( label="Newsletter", + initial=True, required=False, - help_text="Email me about campaign updates, upcoming events, and new features.", + help_text=( + "Email me 2-3 times a month about campaign updates, upcoming " + "events, and new features." + ), ) class Meta(RegistrationForm.Meta):