-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2a.html
111 lines (94 loc) · 4.16 KB
/
index2a.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
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="imgs/favicon.ico" type="imgs/favicon">
<title>Color Blending</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-horizon.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<link href="css/custom.css" rel="stylesheet">
<link href="css/visual.css" rel="stylesheet">
<script src="js/custom.js"></script>
</head>
<body>
<div>
<p class="title"><b>Phase 3.2 of 4 - Ok, you are really close to the fun part of the test, just one thing left!</b></p>
<div class="row probar">
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped" role="progressbar"
aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width:25%"> 25%
</div>
</div>
</div>
<p class="center">Once again, please <b>write</b> in the according boxes below <b>the last perceived word that you can see and the respective square number of that word.</b> If you cannot detect any word or square please select the number 0 and write the word "None".</p>
<div class="row">
<div class="col-sm-3">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb1.png" alt="1">
</div>
<div class="col-sm-3">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb2.png" alt="2">
</div>
<div class="col-sm-3">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb3.png" alt="3">
</div>
<div class="col-sm-3">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb4.png" alt="4">
</div>
<div class="col-sm-3">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb5.png" alt="5">
</div>
<div class="col-sm-3">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb6.png" alt="6">
</div>
<div class="col-sm-3">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb7.png" alt="7">
</div>
<div class="col-sm-3">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb8.png" alt="8">
</div>
</div>
<div class="row">
<div class="col-sm-6">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb9.png" alt="9">
</div>
<div class="col-sm-6">
<img class="img-responsive img-rounded center-block marginbot" src="imgs/plugeb10.png" alt="10">
</div
</div>
<div class="row text-center center-inputs">
<form class="form-inline">
<div class="form-group">
<label for="email">Last Perceived Word:</label>
<input type="text" class="form-group" id="txt">
</div>
<div class="form-group">
<label for="number">Square Number of the Last Perceived Word:</label>
<select class="form-group dropdown" id="age" name="age" onclick="enableField()" onkeydown="enableField()>
<option value="" selected="selected" disabled="disabled">Select one</option>
<option value="1">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
</div>
</form>
</div>
<div class="continueButton">
<div class="text-center">
<button id="submitbutton" type="button" class="btn btn-default btn-lg" onClick="location.href='index3.html'" disabled="disabled">Give me the last phase!</button>
</div>
</div>
</div>
</body>
</html>