redash/templates/login.html
{% extends "layouts/signed_out.html" %} {% block title %}Login to Redash{% endblock %} {% block content %}
{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %} {{ message }} {% endfor %} {% endif %} {% endwith %} {% if show_google_openid %} Login with Google {% endif %} {% if show_saml_login %} SAML Login {% endif %} {% if show_remote_user_login %} Remote User Login {% endif %} {% if show_ldap_login %} LDAP/SSO Login {% endif %} {% if show_password_login %} {% if show_google_openid or show_saml_login or show_remote_user_login or show_ldap_login %}
{% endif %} {{ username_prompt or 'Email' }}
Password
Remember me Log In {% if not hide_forgot_password %} [I forgot my password]({{%20url_for() {% endif %} {% endif %}
{% endblock %}