{% extends "layouts/signed_out.html" %}
{% block title %}Welcome to Redash!{% endblock %}
{% block content %}
{% if show_google_openid or show_saml_login or show_remote_user_login or show_ldap_login %}
To create your account, please choose a password or login with your SSO provider.
{% else %}
To create your account, please choose a password.
{% endif %}
{% 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_google_openid or show_saml_login or show_remote_user_login or show_ldap_login %}
{% endif %}