-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (85 loc) · 2.77 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
<html>
<head>
<title>HaptiJordon</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css"
/>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<div style="margin:100px;">
<div
class="jumbotron"
style="padding:40px;display: flex; justify-content: center;flex-direction: column;"
>
<h1>HaptiJordon</h1>
<p>
This is a sample monitoring application designed for demonstrating
HaptiJordon's colour language.
</p>
<br />
Simply select a colour using the colour-picking tool below and submit it
with the button. The associated colour pattern will be played on the
accompanying wearable prototype. <br />
<form
method="post"
action="/rgb"
style="display:flex;justify-content: center;flex-direction: column;align-items: center"
>
<br />
<input type="color" name="rgb" id="rgb" /> <br />
<button class="btn btn-primary btn-lg">Play pattern</button>
</form>
</div>
<div
class="jumbotron"
style="padding:40px;display: flex; justify-content: center;flex-direction: column;"
>
<h1>Training</h1>
<p>
Select one of the below options to enter a training exercise for
HaptiJordon.
</p>
<div
class="row"
style="padding:40px;display: flex; justify-content: center;flex-direction: row;"
>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="caption">
<h3>Learn</h3>
<p>
Learn the HaptiJordon colour language by selecting from a grid
of colours.
</p>
<p>
<a href="/learn" class="btn btn-primary" role="button">Go!</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="caption">
<h3>Test</h3>
<p>
Test your familiarity with HaptiJordon by answering colour
questions.
</p>
<p>
<a href="/test" class="btn btn-primary" role="button">Go!</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>