registration updates
This commit is contained in:
parent
8ab8101214
commit
605c8b3406
3 changed files with 4 additions and 4 deletions
|
@ -22,8 +22,8 @@ class RegisterForm(FlaskForm):
|
||||||
gender = SelectField("Gender", choices=[("F", "Female"), ("M", "Male"),
|
gender = SelectField("Gender", choices=[("F", "Female"), ("M", "Male"),
|
||||||
("NB", "Non-binary/Other")],
|
("NB", "Non-binary/Other")],
|
||||||
widget=widgets.Select())
|
widget=widgets.Select())
|
||||||
country = SelectField("Country", choices=[(country.split(",")[0], country.split(",")[0]) for country in countries_list], widget=widgets.Select())
|
country = SelectField("Country of Origin", choices=[(country.split(",")[0], country.split(",")[0]) for country in countries_list], widget=widgets.Select())
|
||||||
newsletter = BooleanField("Subscribe to the MLH newsletter?")
|
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()])
|
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()])
|
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
|
|
@ -102,7 +102,7 @@ privacy policy. I further agree to the terms of both the <a
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check mb-3">
|
<div class="form-check mb-3">
|
||||||
{{ form.newsletter }}
|
{{ form.newsletter }}
|
||||||
Subscribe to the MLH newsletter?
|
I authorize MLH to send me occasional emails about relevant events, career opportunities, and community announcements.
|
||||||
</div>
|
</div>
|
||||||
{{ render_field(form.submit) }}
|
{{ render_field(form.submit) }}
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Add table
Reference in a new issue