-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
39 lines (36 loc) · 1.48 KB
/
Copy pathindex.php
File metadata and controls
39 lines (36 loc) · 1.48 KB
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
<?php require 'templates/header.php';?>
<div class="intro row">
<div class="jumbotron text-center">
<p class="lead">Test my time perception.</p>
<button type="button" class="btn btn-default btn-lg show-test">Show Test</button>
</div>
</div>
<div class="test row">
<div class="jumbotron text-center">
<p class="lead">Tap the button whenever you think 20 seconds has past.</p>
<p>Please don't use a phone, watch, or other time-telling devices.</p>
<p>Still <span class="remaining-taps">6</span> remaining.</p>
<button type="button" class="btn btn-default btn-lg start-test">Start</button>
<button type="button" class="btn btn-primary btn-lg tap" disabled>Tap!</button>
</div>
</div>
<div class="after-submit row">
<div class="jumbotron text-center">
<p class="lead">Thank you for helping us out!</p>
</div>
</div>
<div class="error-submit row">
<div class="jumbotron text-center">
<p class="lead">Uh-oh, something went wrong. Why don't you <a href="">try again?</a></p>
</div>
</div>
<form class="hidden">
<input type="hidden" id="starting-time" name="starting-time">
<input type="hidden" id="attempt-1" name="attempt-1"/>
<input type="hidden" id="attempt-2" name="attempt-2"/>
<input type="hidden" id="attempt-3" name="attempt-3"/>
<input type="hidden" id="attempt-4" name="attempt-4"/>
<input type="hidden" id="attempt-5" name="attempt-5"/>
<input type="hidden" id="attempt-6" name="attempt-6"/>
</form>
<?php require 'templates/footer.php';?>