{% from "components/alert.html" import Alert %}
{% extends "base_public.html" %}
{% block title %}Sign in | JEDI Cloud{% endblock %}
{% block content %}
{% if request.args.get("sessionExpired") %}
{{ Alert('Session Expired',
message='Your session expired due to inactivity. Please log in again to continue.',
level='error'
) }}
{% endif %}
{% if redirect %}
{{ Alert('Log in Required.',
message='After you log in, you will be redirected to your destination page.',
level='warning'
) }}
{% endif %}
{{ Alert('Certificate Selection',
message='When you are prompted to select a certificate, please select E-mail Certificate from the provided choices.',
actions=[
{
'label': 'Learn More',
'icon': 'help',
'href': '/help'
}
]
) }}