diff --git a/goathacks/registration/forms.py b/goathacks/registration/forms.py index 6abb65e..10ff19a 100644 --- a/goathacks/registration/forms.py +++ b/goathacks/registration/forms.py @@ -25,6 +25,7 @@ class RegisterForm(FlaskForm): 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?") 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()]) submit = SubmitField("Register") diff --git a/goathacks/templates/register.html b/goathacks/templates/register.html index 7331eb7..10bd53b 100644 --- a/goathacks/templates/register.html +++ b/goathacks/templates/register.html @@ -86,6 +86,20 @@ {{ form.agree_coc }} I confirm that I have read and agree to the MLH Code of Conduct +