{% macro login_form(title, signup, error, google_btn, csrf, forgot, toggle_path, toggle_label) %}

{{ title }}

{% if error %}

{{ error }}

{% endif %} {{ google_btn }}
{{ csrf }}
{{ forgot }}

{{ toggle_label }}

{% endmacro %} {% macro check_email() %}

Check Your Email

We sent a confirmation link to your email address.

Resend

Back to login

{% endmacro %} {% macro resend_confirm(csrf, error) %}

Resend Confirmation

{% if error %}

{{ error }}

{% endif %}
{{ csrf }}

Back to login

{% endmacro %} {% macro confirm_failed() %}

Confirmation Failed

Link expired or invalid.

Resend

{% endmacro %} {% macro invalid_link() %}

Invalid Link

Invalid confirmation link.

{% endmacro %} {% macro resend_success() %}

Resend Confirmation

If that account exists and is unconfirmed, a new link has been sent.

Back to login

{% endmacro %} {% macro reset_request(csrf, error, message) %}

Reset Password

{% if message %}

{{ message }}

{% endif %} {% if error %}

{{ error }}

{% endif %}
{{ csrf }}

Back to login

{% endmacro %} {% macro reset_form(token, csrf, error) %}

New Password

{% if error %}

{{ error }}

{% endif %}
{{ csrf }}
{% endmacro %} {% macro password_updated() %}

Password updated

Your password has been reset.

Log in

{% endmacro %} {% macro magic_request(csrf, error, message, show_password_link=true) %}

Sign In

Enter your email and we'll send you a login link.

{% if message %}

{{ message }}

{% endif %} {% if error %}

{{ error }}

{% endif %}
{{ csrf }}
{% if show_password_link %}

Sign in with password

{% endif %} {% endmacro %} {% macro pay_success() %}

Payment successful!

Redirecting...

{% endmacro %}