forked from SOCR/BlueML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page3.html
58 lines (50 loc) · 2.29 KB
/
page3.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
<!-- Analysis Page goes here -->
<div id="Analysis Page" class = "module">
<h1>Select Algorithm Complexity</h1>
<span class="glyphicon glyphicon-question-sign pull-right" data-toggle="tooltip" title="Algorithm is faster with less accuracy"></span>
<br/>
<b> Less Accurate/Faster </b><input id="Slide"/><b> More Accurate/Slower </b>
<br/><br/>
<div class="dropdown" style="width: 125px;margin:auto">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Advanced Options
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">Option 1</a></li>
<li><a href="#">Option 2</a></li>
<li><a href="#">Option 3</a></li>
</ul>
</div>
<h1>Select Features for Classification</h1>
<span class="glyphicon glyphicon-question-sign pull-right" data-toggle="tooltip" title="Please select features for classification"></span>
<br/>
<div class="containerCheck">
<form>
<label class="checkbox-inline"><input type="checkbox" value=""> QRS Interval </label>
<label class="checkbox-inline"><input type="checkbox" value=""> S Amplitude </label>
</form>
</div>
<div class="containerCheck">
<form>
<label class="checkbox-inline"><input type="checkbox" value=""> PR Interval </label>
<label class="checkbox-inline"><input type="checkbox" value=""> T Amplitude </label>
</form>
</div>
<div class="containerCheck">
<form>
<label class="checkbox-inline"><input type="checkbox" value=""> QT Interval </label>
<label class="checkbox-inline"><input type="checkbox" value=""> Q Amplitude </label>
</form>
</div>
<div class="containerCheck">
<form>
<label class="checkbox-inline"><input type="checkbox" value=""> T Interval </label>
<label class="checkbox-inline"><input type="checkbox" value=""> P Amplitude </label>
</form>
</div>
<div class="containerCheck">
<form>
<label class="checkbox-inline"><input type="checkbox" value=""> P Interval</label>
<label class="checkbox-inline"><input type="checkbox" value=""> R Amplitude </label>
</form>
</div>
</div>