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