Add MLH logistics checkbox
This commit is contained in:
parent
3441982734
commit
13119288d4
2 changed files with 15 additions and 0 deletions
|
@ -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")
|
||||
|
||||
|
|
|
@ -86,6 +86,20 @@
|
|||
{{ form.agree_coc }}
|
||||
I confirm that I have read and agree to the <a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf" target="_blank">MLH Code of Conduct</a>
|
||||
</div>
|
||||
<div class="form-check mb-3 required">
|
||||
{{ form.logistics }}
|
||||
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 <a
|
||||
href="https://github.com/MLH/mlh-policies/blob/main/contest-terms.md">MLH
|
||||
Contest Terms
|
||||
and
|
||||
Conditions</a>
|
||||
and the <a
|
||||
href="https://github.com/MLH/mlh-policies/blob/main/privacy-policy.md">MLH
|
||||
Privacy
|
||||
Policy</a>.
|
||||
</div>
|
||||
<div class="form-check mb-3">
|
||||
{{ form.newsletter }}
|
||||
Subscribe to the MLH newsletter?
|
||||
|
|
Loading…
Add table
Reference in a new issue