{% call widget.panel( login_title or 'Login') %} {% if allow_signup and oauth_enabled %}
{{ macros.oauth_providers() }}

{% endif %} {% if show_verification_message and email %}

Account Verification Required

A verification link was sent to {{ email }}. You must verify your account to continue.

Resend Verification
{% endif %} {% call forms.post(request.endpoint) %} {{ forms.hidden("method", value="email") }} {{ forms.hidden("next", value=login_url_next) }} {{ forms.input(label="Email", name="email", value=email or "", type="email", data={"validation": "email"}) }} {{ forms.input(label="Password", name="password", type="password", data={"validation": "required", "validation-error-msg": "Password is required"}) }} {{ forms.button("Login", type="submit", class="btn-primary btn-lg btn-block") }} {% endcall %}
{% if allow_signup %} Signup {% endif %} Lost Password
{% endcall %}