{% extends "layout.html" %} {% block page_title %}Registration{% endblock %} {% block body_class %}userform register{% endblock %} {% block content %}

Register

Already registered? Log in here.


{% if oauth_type %}

You can also use 🔑 Single Sign On through {{ oauth_type }} in this application.

{% endif %}
{{ form.hidden_tag() }}
{{form.username.label}} {{form.username(placeholder="Name", class_="form-control")}}
{{form.email.label}}

For a profile image, create a Gravatar with this address.

{{form.email(placeholder="Email", class_="form-control")}}
{{form.webpage_url.label}}

URL to your homepage or GitHub, Twitter, ... account.

{{form.webpage_url(placeholder="https://", class_="form-control")}}
{{form.password.label}} {{form.password(placeholder="Password", class_="form-control")}}
{{form.confirm.label}} {{form.confirm(placeholder="Password (again)", class_="form-control")}}
{% endblock %}