-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetting.html
43 lines (40 loc) · 1.72 KB
/
setting.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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css">
</head>
<body>
<div class="container">
<form id="form">
<div class="input-field col s6">
<label for="school_place">校名</label>
<select class=" browser-default" id="school_place" name="school_place">
<option value="" disabled selected>選擇所在的校園</option>
</select>
</div>
<div class="input-field col s6">
<label for="school_studing">校名</label>
<select class=" browser-default" id="school_studing" name="school_studing">
<option value="" disabled selected>選擇所屬學校</option>
</select>
</div>
<div class="input-field col s6">
<input name="user" placeholder="Placeholder" id="account" type="text" class="validate">
<label for="account">帳號</label>
</div>
<div class="input-field col s6">
<input name="password" placeholder="Placeholder" id="pwd" type="password" class="validate">
<label for="pwd">密碼</label>
</div>
<p>
<input name="autologin" type="checkbox" id="autologin" />
<label for="autologin">下次自動登入</label>
</p>
<button class="btn waves-effect waves-light" type="submit">儲存</button>
</form>
</div>
<script src="setting.js"></script>
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
</html>