-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (71 loc) · 2.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CocaPT Performance API</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
</head>
<body>
<div class="header text-center">
<img class="icon" src="img/cloud.png">
<h1 class="text-center">CocaPT</h1>
<h2 class="text-center">Performance API</h2>
</div>
<div id="container">
<h4 class="text-center">Select Service Provider</h4>
<div class="row sp">
<div id="AWSsp" class="spelement col-md-3" onClick='selectSp("AWS")'>
<div class="imgwrapper text-center">
<img class="iconsp" src="img/aws.png">
</div>
<h2 class="text-center">AWS</h2>
</div>
<div id="gcesp" class="spelement col-md-3" onClick='selectSp("gce")'>
<div class="imgwrapper text-center">
<img class="iconsp" src="img/gce.png">
</div>
<h2 class="text-center">GCE</h2>
</div>
<div id="exoscalesp" class="spelement col-md-3" onClick='selectSp("exoscale")'>
<div class="imgwrapper text-center">
<img class="iconsp" src="img/exoscale.png">
</div>
<h2 class="text-center">Exoscale</h2>
</div>
<div id="switchsp" class="spelement col-md-3" onClick='selectSp("switch")'>
<div class="imgwrapper text-center">
<img class="iconsp" src="img/switch.png">
</div>
<h2 class="text-center">SwitchEngines</h2>
</div>
</div>
<div id="flavors" class="hidden">
<h4 class="selectiontitle text-center ">Select Flavor</h4>
<div class="row flavors">
<div id="tinyflavor" class="col-md-3 flavor" onClick='selectFlavor("tiny")'>Tiny</div>
<div id="smallflavor" class="col-md-3 flavor" onClick='selectFlavor("small")'>Small</div>
<div id="mediumflavor" class="col-md-3 flavor" onClick='selectFlavor("medium")'>Medium</div>
<div id="largeflavor" class="col-md-3 flavor" onClick='selectFlavor("large")'>Large</div>
</div>
</div>
<div id="performancedata" class="row performancedata hidden">
<div id="performancedatacontent" class="col-md performancedatacontent">
<table class="table" id="performancedatatable">
<thead>
<tr>
<th scope="col">Benchmark</th>
<th scope="col">Metric</th>
<th scope="col">Value</th>
<th scope="col">Unit</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<script src="index.js"></script>
</div>
</body>
</html>