diff --git a/goathacks/registration/forms.py b/goathacks/registration/forms.py index 10ff19a..0c367bb 100644 --- a/goathacks/registration/forms.py +++ b/goathacks/registration/forms.py @@ -22,8 +22,8 @@ class RegisterForm(FlaskForm): gender = SelectField("Gender", choices=[("F", "Female"), ("M", "Male"), ("NB", "Non-binary/Other")], widget=widgets.Select()) - country = SelectField("Country", choices=[(country.split(",")[0], country.split(",")[0]) for country in countries_list], widget=widgets.Select()) - newsletter = BooleanField("Subscribe to the MLH newsletter?") + country = SelectField("Country of Origin", choices=[(country.split(",")[0], country.split(",")[0]) for country in countries_list], widget=widgets.Select()) + newsletter = BooleanField("'I authorize MLH to send me occasional emails about relevant events, career opportunities, and community announcements.") agree_coc = BooleanField("I confirm that I have read and agree to the Code of Conduct", validators=[DataRequired()]) logistics = BooleanField("I authorize you to share my application/registration with Major League Hacking for event administration, ranking, and MLH administration in-line with the MLH privacy policy.I further agree to the terms of both the MLH Contest Terms and Conditions and the MLH Privacy Policy.", validators=[DataRequired()]) diff --git a/goathacks/templates/home b/goathacks/templates/home index 2dec8e0..a107d4d 160000 --- a/goathacks/templates/home +++ b/goathacks/templates/home @@ -1 +1 @@ -Subproject commit 2dec8e0e3ae860e48842e8346461f03062c7f658 +Subproject commit a107d4daf149bac2b8bd1182b399e57e8171c1f8 diff --git a/goathacks/templates/register.html b/goathacks/templates/register.html index 10bd53b..d763741 100644 --- a/goathacks/templates/register.html +++ b/goathacks/templates/register.html @@ -102,7 +102,7 @@ privacy policy. I further agree to the terms of both the
{{ form.newsletter }} - Subscribe to the MLH newsletter? + I authorize MLH to send me occasional emails about relevant events, career opportunities, and community announcements.
{{ render_field(form.submit) }}