File size: 802 Bytes
ae01f49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}
{% block title %}{{ config.APP_NAME }}{% endblock %}
{% set other_props = {
    'messages': get_flashed_messages(with_categories=true)
} %}
{% block body %}
<style>
    #root:not(:empty) + .pg-sp-container {
        display: none;
    }
</style>
<div id="root" style="height: 100%"></div>
<div class="pg-sp-container">
    <div class="pg-sp-content">
        <div class="pg-sp-icon"></div>
    </div>
</div>
{% endblock %}
{% block init_script %}
try {
    require(
        ['security.pages'],
        function() {
            window.renderSecurityPage('{{page_name}}', {{page_props|tojson|safe}},
                {{other_props|tojson|safe}});
        }, function() {
            console.log(arguments);
        }
    );
} catch (err) {
    console.log(err);
}
{% endblock %}