Create your account

to continue to Chives Exchange
{{ form.hidden_tag() }}
{{ form.username(placeholder="Username") }}
{% if form.username.errors %}
    {% for error in form.username.errors %}
  • {{ error }}
  • {% endfor %}
{% else %} You can user letters, numbers, and periods.
{% endif %}
{{ form.password(placeholder="Password") }}
{{ form.confirm(placeholder="Confirm password") }}
{% if form.password.errors %}
    {% for error in form.password.errors %}
  • {{ error }}
  • {% endfor %}
{% else %} Use 8 or more characters with a mix of letters, numbers & symbols {% endif %}
{{ form.submit(class="waves-effect waves-light btn") }}