registration updates

This commit is contained in:
Warren Yun 2024-12-03 15:33:38 -05:00
parent 8ab8101214
commit 605c8b3406
3 changed files with 4 additions and 4 deletions

View file

@ -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()])

@ -1 +1 @@
Subproject commit 2dec8e0e3ae860e48842e8346461f03062c7f658
Subproject commit a107d4daf149bac2b8bd1182b399e57e8171c1f8

View file

@ -102,7 +102,7 @@ privacy policy. I further agree to the terms of both the <a
</div>
<div class="form-check mb-3">
{{ form.newsletter }}
Subscribe to the MLH newsletter?
I authorize MLH to send me occasional emails about relevant events, career opportunities, and community announcements.
</div>
{{ render_field(form.submit) }}
</form>