forked from Jackysi/advancedtomato-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logout.asp
63 lines (57 loc) · 1.57 KB
/
logout.asp
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
<html lang="en">
<!--
Tomato GUI
Copyright (C) 2006-2010 Jonathan Zarate
http://www.polarcloud.com/tomato/
For use with Tomato Firmware only.
No part of this file may be used without permission.
-->
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta name="robots" content="noindex,nofollow">
<meta name="viewport" content="width=820">
<style>
body {
background: #f0f0f0;
color: #585858;
font-family: Verdana;
font-size: 13px;
}
#loader {
width:100%;
max-width: 450px;
text-align: center;
background: #fff;
border: 1px solid #E1E1E1;
margin: 15% auto;
padding: 20px;
border-width: 1px;
border-style: solid;
border-color: #EEE #EEE #D1D2D3;
background: none repeat scroll 0% 0% #FFF;
border-radius: 4px;
-webkit-border-radius: 4px;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
}
</style>
</head>
<body onload="setTimeout('go.submit()', 1200)">
<div id="loader">
<h3 style="font-size: 16px; text-align: left; color: #353535; padding: 0; margin: 0 0 2px;">Logout</h3>
<div style="text-align: left;">
To clear the credentials cached by the browser:<br>
<br>
<b>Firefox, Internet Explorer, Opera, Safari</b><br>
- Leave the password field blank.<br>
- Click OK/Login<br>
<br>
<b>Chrome</b><br>
- Select Cancel.
</div>
</div>
<form name="go" method="post" action="logout">
<input type="hidden" name="_http_id" value="<% nv(http_id); %>">
</form>
</body>
</html>