-
Notifications
You must be signed in to change notification settings - Fork 1
/
success.html
executable file
·38 lines (37 loc) · 1.11 KB
/
success.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Success Page</title>
<link rel="stylesheet" href="css/error.css" type="text/css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.textshadow.js"></script>
<script>$(document).ready(function(){
if ($.browser.msie) {
var sha = {
x : 0,
y : 0,
radius : 2,
color : '#191919',
opacity: 50
};
$(".txtshd").textShadow(sha);
}
})
</script>
<style>
body{
background:#79b90b url(images/bg_top3.jpg) repeat-x top ;
}
</style>
</head>
<body>
<div class="content_succ">
<div id="wrap">
<div id="imag"></div><div id="msg" class="txtshd">Congratulations !! U Have Been Registered Successfully.<br>U Are Now A Member Of This Site.</div></div>
<div id="button" style="float:right; margin-top:28px;">
<a class="button2 orange" onclick="parent.parent.GB_hide();">Click Here To Go Back To Login Page</a>
</div>
</div>
</body>
</html>