-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
36 lines (36 loc) · 957 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/bootstrap.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<title>Group Tabs</title>
<script src="tab_group.js"></script>
<script src="popup.js"></script>
</head>
<body>
<header class="navbar">
<nav id="navbar">
<ul id="tab_groups" class="nav nav-tabs col-xs-11">
</ul>
<ul id="tab_group_add" class="nav nav-tabs col-xs-1">
<li id="li_add_group"><a>+</a></li>
</ul>
</nav>
</header>
<div class="group_setting">
<form class="form-horizontal">
<div class="form-group" id="tab_settings">
<label class="col-xs-2 control-label">Group Name:</label>
<div class="col-xs-10">
<input class="form-control" id="group_name_change_input" type="text"/>
</div>
</div>
</form>
</div>
<div id="div_tab_list">
<ul id="tab_list" class="list-unstyled">
</ul>
</div>
</body>
</html>