50 lines
1.4 KiB
HTML
50 lines
1.4 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'>
|
|
|
|
{% with %}
|
|
{% set category_filter=["error"] %}
|
|
{% include "fragments/flash.html" %}
|
|
{% endwith %}
|
|
|
|
<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>
|
|
</div>
|
|
|
|
{% with %}
|
|
{% set category_filter=["success", "info", "warning"] %}
|
|
{% include "fragments/flash.html" %}
|
|
{% endwith %}
|
|
|
|
{{ 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 %}
|
|
|
|
|