0
|
1 |
<!DOCTYPE html>
|
|
2 |
<!-- :mode=html: -->
|
|
3 |
<html>
|
|
4 |
<head>
|
|
5 |
<meta http-equiv="pragma" content="no-cache" />
|
|
6 |
<title>SSO-in-a-Box Logout</title>
|
|
7 |
<link rel="stylesheet" type="text/css" href="images/bootstrap/css/bootstrap.min.css" />
|
|
8 |
<link rel="stylesheet" type="text/css" href="images/ssoinabox.css" />
|
|
9 |
</head>
|
|
10 |
|
|
11 |
[% IF notdefined %]
|
|
12 |
<!--
|
|
13 |
This is the template for WebAuth logout. It is displayed whenever the
|
|
14 |
logout.fcgi script is executed. logout.fcgi deletes the single sign-on
|
|
15 |
cookie. Variables used:
|
|
16 |
|
|
17 |
cookies_flag : found a single sign-on cookie to delete
|
|
18 |
-->
|
|
19 |
[% END %]
|
|
20 |
|
|
21 |
<body>
|
|
22 |
<div class="well login-form">
|
|
23 |
<h1>
|
|
24 |
<img alt="SSO in a Box" src="images/ssoinabox.png" />
|
|
25 |
</h1>
|
|
26 |
<div class="loginbox">
|
|
27 |
[% IF cookies_flag %]
|
|
28 |
<div class="alert alert-success">
|
|
29 |
Your single sign-on cookie has been deleted.
|
|
30 |
</div>
|
|
31 |
[% ELSE %]
|
|
32 |
<div class="alert alert-error">No single sign-on cookies found to delete.</div>
|
|
33 |
[% END %]
|
|
34 |
|
|
35 |
<p class="links">
|
|
36 |
<a href="/security.html">Account security</a> •
|
|
37 |
<a href="/help.html">Help</a>
|
|
38 |
</p>
|
|
39 |
</div>
|
|
40 |
</div>
|
|
41 |
</body>
|
|
42 |
</html>
|