This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-07-08 12:17:29 +00:00
|
|
|
{% extends 'login/base_full.html' %}
|
2020-05-23 22:57:25 +00:00
|
|
|
|
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
{{ block.super }}
|
|
|
|
<style>
|
|
|
|
.pb-loading,
|
|
|
|
.pf-c-login__main >iframe {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.pb-hidden {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-07-08 12:17:29 +00:00
|
|
|
{% block main_container %}
|
2020-10-16 14:36:18 +00:00
|
|
|
<flow-shell-card
|
|
|
|
class="pf-c-login__main"
|
|
|
|
flowBodyUrl="{{ exec_url }}">
|
|
|
|
</flow-shell-card>
|
2020-05-23 22:57:25 +00:00
|
|
|
{% endblock %}
|