atst/templates/login.html
2018-10-02 13:15:46 -04:00

50 lines
1.5 KiB
HTML

{% from "components/alert.html" import Alert %}
{% extends "base_public.html" %}
{% block title %}Sign in | JEDI Cloud{% endblock %}
{% block content %}
<div class='global-layout login-layout'>
<div class='global-panel-container login-container'>
<div class='col'>
<div class='login-banner'>
<h1 class="login-banner__heading">Access the JEDI Cloud</h1>
<img class="login-banner__logo" src="{{url_for('static', filename='img/ccpo-logo.svg')}}" alt="Cloud Computing Program Office Logo">
<a class="usa-button usa-button-big login-banner__button" href='{{ redirect_url }}'><span>Sign in with CAC</span></a>
{% if False %}
<a class="usa-button usa-button-big usa-button-secondary" href='{{ url_for("dev.login_dev", **request.args) }}'><span>DEV Login</span></a>
{% endif %}
</div>
{% 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 <strong>E-mail Certificate</strong> from the provided choices.',
actions=[
{
'label': 'Learn More',
'icon': 'help',
'href': '/help'
}
]
) }}
</div>
</div>
</div>
{% endblock %}