-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaccess_denied.html
More file actions
127 lines (113 loc) · 3.84 KB
/
Copy pathaccess_denied.html
File metadata and controls
127 lines (113 loc) · 3.84 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
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
123
124
125
126
127
<!DOCTYPE HTML>
<!--
Telemetry by Pixelarity
pixelarity.com | hello@pixelarity.com
License: pixelarity.com/license
-->
<html>
<head>
<title>Booth</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
</head>
<body id="top">
<!-- Header -->
<header id="header">
<!-- Logo -->
<div class="logo">
<a href="index.html">Booth</a><span> By NCYU stud.</span>
</div>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li>
<a href="#" class="icon fa-angle-down">Dropdown</a>
<ul>
<li><a href="#">Option One</a></li>
<li><a href="#">Option Two</a></li>
<li><a href="#">Option Three</a></li>
<li>
<a href="#">Submenu</a>
<ul>
<li><a href="#">Option One</a></li>
<li><a href="#">Option Two</a></li>
<li><a href="#">Option Three</a></li>
<li><a href="#">Option Four</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="generic.html">Generic</a></li>
<li><a href="elements.html">Elements</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<section id="main" class="wrapper">
<div class="inner">
<header>
<h1>登入</h1>
<p>Login</p>
</header>
<p>沒有帳號? <a href="./register.html">點我申辦</a></p>
<p style= "color:red;">帳號或密碼錯誤</p>
<form method="post" action="./connect.php">
<div class="6u 12u$(xsmall)">
<input type="text" name="account" placeholder="Enter Account"/><br>
<input type="password" name="password" placeholder="Enter Password"/><br>
</div>
<input type="submit" value="登入" class="special"/>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<div class="split style1">
<div class="contact">
<h2>Contact</h2>
<ul class="contact-icons">
<li class="icon fa-home"><a href="#">1234 Fictional Street #5432<br>Nashville, TN 00000-0000</a></li>
<li class="icon fa-phone"><a href="#">(000) 000-0000</a></li>
<li class="icon fa-envelope-o"><a href="#">info@untitled.tld</a></li>
</ul>
<ul class="icons-bordered">
<li><a class="icon fa-facebook" href="#">
<span class="label">Facebook</span>
</a></li>
<li><a class="icon fa-twitter" href="#">
<span class="label">Twitter</span>
</a></li>
<li><a class="icon fa-instagram" href="#">
<span class="label">Instagram</span>
</a></li>
<li><a class="icon fa-github" href="#">
<span class="label">GitHub</span>
</a></li>
<li><a class="icon fa-linkedin" href="#">
<span class="label">LinkedIn</span>
</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>© Untitled. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.selectorr.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>