-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (43 loc) · 1.76 KB
/
index.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
<!DOCTYPE HTML>
<html>
<head>
<title>公文回報系統</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-loading">
<div id="wrapper">
<h2 style=" text-align:center; font-size:2em; color:white;">公文回報系統</h2>
<section id="main">
<header>
<img src="images/logo.png" alt="" />
<form class="form-signin" action="login.php" method="post">
<h2 class="form-signin-heading">偉文補習班</h2>
<hr />
<label for="inputEmail" class="sr-only">Email</label>
<input type="email" name="email" id="inputEmail" class="form-control" placeholder="Email" required autofocus><br>
<label for="inputPassword" class="sr-only">Password</label>
<input type="password" name="password" id="inputPassword" class="form-control" placeholder="Password" required>
<br>
<button style="width:85px;font-size: 14px;" class="btn" type="submit">登入</button>
</form>
<hr />
<!-- <a style="width:85px;" class="btn" href="register.php">註冊帳號</a> -->
</header>
</section>
<footer id="footer">
<ul class="copyright">
<li>© GaryHsu</li><li>Design </li>
</ul>
</footer>
</div>
<script>
if ('addEventListener' in window) {
window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-loading\b/, ''); });
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : '');
}
</script>
</body>
</html>