-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
61 lines (50 loc) · 1.66 KB
/
Copy pathindex.php
File metadata and controls
61 lines (50 loc) · 1.66 KB
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
<html>
<head>
<title>Take A Number</title>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<link href="css/style.css" rel=stylesheet type="text/css" >
<link href="css/imprompt.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/jquery.alerts.js"></script>
<script type="text/javascript" src="js/contextmenu.js"></script>
<script type="text/javascript" src="js/function.js"></script>
<script type="text/javascript" src="js/jquery-impromptu.4.0.js"></script>
</head>
<body id="IndexPage">
<div id="main">
<div id="header">
<div id="title">
TAKE A NUMBER SYSTEM
</div>
</div>
<div id="content">
</div>
<script>
$('#content').load('login.php');
//$('#content').load('managepage.php');
</script>
<div id="footer">
Copyright (c) 2012 Sitename.com. All rights reserved. Design by CFWei.
</div>
</div>
<script>
FullScreenUpdateValue();
/*
$("#main").append($("<div id=\"MenuBar\">")
.html("<span style=\"font-size:30px;\">選單</span>")
.bind({mouseenter:function(){
$(this).height("210px");
loadpage("#MenuBar","controlbar.php");
},
mouseleave:function(){
$(this).height("30px");
$(this).html("<span style=\"font-size:30px;\">選單</span>");
}
}
)
);
*/
</script>
</body>
</html>