{%- macro base() -%} {%- endmacro %} {% macro error() -%} {% if use_auth %}
{% endif %} {%- endmacro %} {% macro forget(form) -%}
{{ error() }}
{{ form.email(class="form-control",placeholder="Email") }}
{% include 'maple/captcha.html' %}
{%- endmacro %} {% macro login(form) -%}
{{ error() }}
{{ form.username(class="form-control",placeholder="Username") }}
{{ form.password(class="form-control",placeholder="Password") }}
{% include 'maple/captcha.html' %}
{{ form.remember() }}{{ form.remember.label }} {{_('forget password?')}}
{%- endmacro %} {% macro register(form) -%}
{{ error() }}
{{ form.username(class="form-control",placeholder="Username") }}
{{ form.email(class="form-control",placeholder="Email") }}
{{ form.password(class="form-control",placeholder="Password") }}
{% include 'maple/captcha.html' %}
{%- endmacro %}