forked from nikunjness/cloudOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signout.aspx
100 lines (68 loc) · 2.08 KB
/
signout.aspx
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="signout.aspx.cs" Inherits="signout" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>CloudOS-SignOut</title>
<script type="text/javascript" src="Header/jquery-1.3.1.min.js"></script>
<script type="text/javascript" src="js/jquery.blockUI.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.blockUI({ message: $('#logout'), overlayCSS: { backgroundColor: '#fff',opacity: .4 } });
});
// speed in milliseconds
var scrollSpeed = 70;
// set the default position
var current = 0;
// set the direction
var direction = 'h';
function bgscroll()
{
// 1 pixel row at a time
current -= 1;
// move the background with backgrond-position css properties
$('body.clouds').css("backgroundPosition", (direction == 'h') ? current+"px 0" : "0 " + current+"px");
}
//Calls the scrolling function repeatedly
setInterval("bgscroll()", scrollSpeed);
</script>
<style type="text/css">
.clouds {background:#9BCDFF url(Header/bg_clouds.png) repeat-x 0 bottom; width:300px; height:150px;}
table
{
font-family:Book Antiqua;
font-size:larger;
text-align:center;
color:Black;
}
a
{
text-decoration:none;
}
a:hover
{
font-weight:bolder;
color:Green;
}
</style>
</head>
<body class="clouds">
<form id="form1" runat="server">
<div id="logout">
<table style="width:100%;">
<tr>
<td>
You are successfully Logged Out.</td>
</tr>
<tr>
<td>
<a href="signin.aspx">Click here for login again.</a></td>
</tr>
<tr>
<td>
<a href="home.aspx">Click here to visit our Home Page.</a> </td>
</tr>
</table>
</div>
</form>
</body>
</html>