{% extends "base.html" %} {% block content %}

A New Contest!

{{ form.hidden_tag() }} {{ form.csrf_token }}
{{ form.title(class_='form-control', id='title', maxlength=128) }} {{ form.title.label(for='title') }}
{{ form.instructions(class_='form-control', id='instructions', rows=6) }} {{ form.instructions.label(for='instructions') }}
Provide the user with clear instructions about what information is needed to sign up. For instance - an email address, a forum handle or username.
{{ form.email(class_='form-control', id='email', maxlength=128) }} {{ form.email.label(for='email') }}
{{ form.maximum(class_='form-control', id='maximum', min=1, max=500) }} {{ form.maximum.label(for='maximum') }}
{{ form.winners(class_='form-control', id='winners', min=1, max=50) }} {{ form.winners.label(for='winners') }}
{{ form.hours(class_='form-control', id='hours') }} {{ form.hours.label(for='hours') }}
{{ form.recaptcha(class_='form-control') }}
By signing up to own this contest, you agree to receive one winner notification email from this site. We won't send any additional emails, and we'll never share your email with anyone else. See our Privacy terms for more information.
{{ form.submit(class_='form-control btn btn-primary') }}
{% endblock %}