-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtemplate.html
122 lines (110 loc) · 3.74 KB
/
template.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!--
Name:
Admin no:
Module group:
-->
<!--//
// _oo0oo_
// o8888888o
// 88" . "88
// (| -_- |)
// 0\ = /0
// ___/`---'\___
// .' \\| |// '.
// / \\||| : |||// \
// / _||||| -:- |||||- \
// | | \\\ - /// | |
// | \_| ''\---/'' |_/ |
// \ .-\__ '-' ___/-. /
// ___'. .' /--.--\ `. .'___
// ."" '< `.___\_<|>_/___.' >' "".
// | | : `- \`.;`\ _ /`;.`/ - ` : | |
// \ \ `_. \_ __\ /__ _/ .-` / /
// =====`-.____`.___ \_____/___.-`___.-'=====
// `=---='
//
//
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// 佛祖保佑 永无BUG
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>template</title>
<link rel="stylesheet" href="css/templete.css" media="screen" title="no title" charset="utf-8">
<!-- Chat function -->
<script type="text/javascript" src="js/Chat Function.js"></script>
<link rel="stylesheet" type="text/css" href="css/Chatbox.css">
<!-- Login function -->
<script type="text/javascript" src="js/Login Function.js"></script>
<link rel="stylesheet" type="text/css" href="css/Login Page.css">
<script>
window.onload = function() {Onload_check();}
</script>
</head>
<body>
<header>
<nav>
<a href="mainpage.html"><img src="img/logo/logo.png" alt=""></a>
<ul>
<li><a href="http://www.nyp.edu.sg/">Main</a></li>
<li><a href="Info.html">Info</a></li>
<li id="Login_button"><a href="Login Page.html">Login</a></li>
<li><a id="username"></a></li>
<li id="Logout_button"><a href="#" onclick="Logout_submit()">Log Out</a></li>
</ul>
</nav>
</header>
<div id="content">
<section>
<aside></aside>
<article></article>
</article>
</section>
</div>
<footer>
<div>
<a href="http://www.nyp.edu.sg/others/copyright-and-disclaimer">Copyright and Disclaimer</a>
<a href="http://www.nyp.edu.sg/others/privacy-policy">Privacy Policy</a>
<a href="http://www.nyp.edu.sg/others/organisational-awards">Organizational Awards</a>
<hr>
<p>Nanyang Polytechnic 180 Ang Mo Kio Avenue 8 Singapore 569830 Tel:6451 5115<br>
Copyright© 2016 NYP, Singapore. All rights reserved.<br>
Best viewed at 1920 x 1080 resolution with Firefox.</p>
</div>
</footer>
<!-- Chat -->
<a onclick="Chatbox_toggler()" href="#"><img id="Chatbox_toggle" src="img/Chatbox_icon.png"></a>
<div id="Chatbox_wrapper" style="display: none;">
<div id="Chatbox_text">
<div class="Chatbox_text_BG">
<span class="Chatbox_names">Hendry</span>
<span>22/7/2016 16:55</span>
<p>Hello!</p>
</div>
<div class="Chatbox_text_BG">
<span class="Chatbox_names">Caroline</span>
<span>22/7/2016 16:55</span>
<p>Hi!</p>
</div>
<div id="Chatbox_hidden" style="visibility: hidden;"></div>
</div>
<p class="Chatbox_name_title">Online<p>
<div id="Chatbox_users">
<p class="Chatbox_names">Hendry</p>
<p class="Chatbox_names">Caroline</p>
</div>
<div id="Chatbox_field">
<form onsubmit="this.reset(); return false;">
<label style="display: none;">Message:</label><input id="Chatbox_data" required></input>
<button onclick="Chatbox_submit()">Send</button>
</form>
</div>
<div id="Chatbox_toggle_BG"></div>
</div>
</body>
</html>