-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (94 loc) · 3.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="src/style/bootstrap.min.css">
<link rel="stylesheet" href="src/style/style.css">
<title></title>
</head>
<body>
<script src='/dist/bundle.js'></script>
<div class="container">
<!--TEAM members -->
<button class="btn btn-default filter-button">
<span class="plus-sign">+</span>
<span class="minus-sign" style="display:none">-</span>
Filter
</button>
<div class="row team-wrapper">
<div class="filter-row row" style="display:none">
<div class="col-sm-5">
<div class="dropdown dropdown-team">
<button class="btn btn-secondary dropdown-toggle select-team-btn" type="button" id="dropdownMenuButton" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Select Team
</button>
<div id="dropdown-team" class="dropdown-menu"></div>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<select class="form-control" id="year">
<option value="2017">2017</option>
<option value="2016">2016</option>
</select>
</div>
</div>
<div class="col-sm-1">
<button id="show-table" type="button" class="btn btn-secondary show-btn">Show</button>
</div>
</div>
</div>
<div class="row" id="table-clone-in">
</div>
<div class="col-sm-12 content-to-clone" id="content-to-clone" style="display:none">
<div class="header-name">
<p class="team-name"></p>
</div>
<table class="table table-striped table-bordered team-table">
<thead class="header-elm">
<th scope="col">Name</th>
<th scope="col">Jan</th>
<th scope="col">Feb</th>
<th scope="col">Mar</th>
<th scope="col">Apr</th>
<th scope="col">May</th>
<th scope="col">Jun</th>
<th scope="col">Jul</th>
<th scope="col">Aug</th>
<th scope="col">Sep</th>
<th scope="col">Oct</th>
<th scope="col">Nov</th>
<th scope="col">Dec</th>
</thead>
<tbody id="employees-table">
</tbody>
</table>
</div>
<div class="modal fade" id="UserModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content mod-cont">
<div class="modal-header">
<h5 class="modal-title" id="modalLabel">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="modal-content-table">
<table class="table table-striped table-responsive table-bordered table-sm">
<thead>
<tr id="modal-table-head">
</tr>
</thead>
<tbody class="modal-body-input" id="modal-table-body">
</tbody>
</table>
</div>
<div class="modal-footer">
<button id="save-btn" type="button" data-dismiss="modal" class="btn btn-primary save-change">Save</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>