-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
32 lines (32 loc) · 1.3 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/index.css" rel="stylesheet" type="text/css">
<title>Noods</title>
</head>
<body>
<div id='loginpanel'>
<form action='login.php' method='post' class='form-horizontal'>
<div class="control-group">
<label class="control-label" for="username"> 帳號: </label>
<div class="controls">
<input type='text' name='username' id='username' placeholder='username'><br>
</div>
</div>
<div class="control-group">
<label class="control-label" for="password"> 密碼: </label>
<div class="controls">
<input type='password' name='password' id='password' placeholder='password'><br>
</div>
</div>
<div class="control-group">
<div class="controls">
<input type='submit' class='btn btn-primary' value='登入'>
</div>
</div>
</form>
</div>
</body>
</html>