summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/authentication/logout.phtml
blob: 501ed20a3c4402509cdfee5ce752fef877c62371 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php

use Icinga\Util\Csp;

?>
<!--
    This view provides a workaround to logout from an external authentication provider, in case external
    authentication was configured (the default is to handle authentications internally in Icingaweb2).

    The <a href="http://tools.ietf.org/html/rfc2617">Http Basic and Digest Authentication</a> is not
    designed to handle logout. When the user has provided valid credentials, the client is adviced to include these
    in every further request until the browser was closed. To allow logout and to allow the user to change the
    logged-in user this JavaScript provides a workaround to force a new authentication prompt in most browsers.
-->
<div class="content">
    <div id="icinga-logo" aria-hidden="true"></div>
    <div class="alert alert-warning" id="logout-in-progress">
        <b><?= $this->translate('Logging out...'); ?></b>
        <p>
            <?= $this->translate(
                'If this message does not disappear, it might be necessary to quit the'
                . ' current session manually by clearing the cache, or by closing the current'
                . ' browser session.'
            ); ?>
        </p>
    </div>
    <div id="logout-successful" class="alert alert-success" hidden><?= $this->translate('Logout successful'); ?></div>

    <div class="container">
        <a href="<?= $this->href('dashboard'); ?>"><?= $this->translate('Login'); ?></a>
    </div>
</div>
<script type="text/javascript" src="<?= $this->href('js/logout.js'); ?>"></script>
<style type="text/css" nonce="<?= Csp::getStyleNonce(); ?>">
    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        background-color: #0095bf;
        color: white;
    }
    .content {
        text-align: center;
    }

    #icinga-logo {
        background-image: url('../img/icinga-logo-big.svg');
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: contain;
        height: 177px;
        margin-top: 10em;
        width: 100%;
    }

    #logout-in-progress {
        margin: 2em 0 1em;
        font-size: 2em;
        font-weight: bold;
    }

    .container a {
        color: white;
        font-size: 1.5em;
    }
</style>