{% extends "layout.html" %} {% block title %}register{% endblock %} {% macro input(name, type='text', label=None) %} {{ label or name|capitalize }}: {%- endmacro %} {% block content %}

register your identity

{% if error %}

Error: {{ error }}{% endif %}

{{ input('username') }} {{ input('password', type='password') }} {{ input('password2', label='Confirm password', type='password') }}
 
{% endblock %}