-
Notifications
You must be signed in to change notification settings - Fork 0
/
reportOld.html
93 lines (88 loc) · 2.6 KB
/
reportOld.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
<!DOCTYPE html>
<html>
<head>
<title>reportOld</title>
<script src="jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="javascript.js" ></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="report.css">
</head>
<body>
<div class="container">
<div class="jumbotron text-center">
<h2>Report on Questions</h2>
</div>
</div>
<div class="container">
<h2>Participant</h2>
<div class="dropdown">
<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown">participants
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">Jim Smith</a></li>
<li><a href="#">Mike Smith</a></li>
<li><a href="#">Joe Smith</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-7 ">
<div class="table-responsive">
<table class="table table-striped col-lg-8">
<thead>
<tr>
<th>Name</th>
<th>Monday</th>
<th>Tuseday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
<th>Sunday</th>
</tr>
</thead>
<tbody>
<tr>
<td><h3>Jim</h3></td>
<td><h3>4/5</h3></td>
<td><h3>3/5</h3></td>
<td><h3 class="checkMark">✔</td>
<td><h3 class="checkMark">✔</td>
<td><h3>2/5</h3></td>
<td><h3 class="checkMark">✔</td>
<td><h3 class="checkMark">✔</td>
</tr>
<tr>
<td><h3>Jim</h3></td>
<td><h3 class="checkMark">✔</td>
<td><h3>3/5</h3></td>
<td><h3>3/5</h3></td>
<td><h3>2/5</h3></td>
<td><h3 class="checkMark">✔</td>
<td><h3>4/5</h3></td>
<td><h3 class="checkMark">✔</td>
</tr>
<tr>
<td><h3>Jim</h3></td>
<td><h3 class="checkMark">✔</td>
<td><h3>3/5</h3></td>
<td><h3>3/5</h3></td>
<td><h3>2/5</h3></td>
<td><h3>2/5</h3></td>
<td><h3>4/5</h3></td>
<td><h3 class="checkMark">✔</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-xs-5">
<img src="Participant.png" alt="participant"> </img>
</div>
</div>
</div>
</body>
</html>