-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoptions.html
38 lines (31 loc) · 946 Bytes
/
options.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>settings</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>Github Remark</h1>
<p>给你的github好友添加备注吧~</p>
</div>
</div>
<div class="container clearfix">
<div class="bs-example">
<div class="form-inline">
<div class="form-group">
<label for="userId">Name</label>
<input id="userId" type="text" class="form-control" placeholder="userId">
</div>
<div class="form-group">
<button id="save" class="btn btn-default" type="button">Save</button>
</div>
</div>
</div>
</div>
<script src="option.js"></script>
</body>
</html>