-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
55 lines (48 loc) · 2 KB
/
index.php
File metadata and controls
55 lines (48 loc) · 2 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
require_once('templates/template-files.php');
get_header();?>
<div class="intro jumbotron screen">
<div class="content">
<h1>Discover your time perception age</h1>
<p>We all perceive time a little differently, take our test and find out how you're experiencing time.</p>
<a class="btn btn-lg btn-line btn-round" href="#instructions"><span class="glyphicon glyphicon-chevron-down"></span></a>
</div>
</div>
<div id="instructions" class="instructions jumbotron screen">
<div class="content">
<p>You will be asked to press a button every time you think 20 seconds has passed.</p>
<p>You will be asked to do this multiple times.</p>
<p>At the end we will determine your age based on how you perceive time.</p>
<p>Trust your intuition, and do not use a clock, watch or phone.</p>
<p><a href="#test" id="start-test" class="btn btn-lg btn-line">Begin test</a></p>
</div>
</div>
<div id="test" class="test jumbotron screen">
<div class="content">
<button id="test-btn" class="btn btn-lg btn-line">I think 20 seconds have passed</button>
<div class="dots">
<span class="dot dot-empty"></span>
<span class="dot dot-empty"></span>
<span class="dot dot-empty"></span>
<span class="dot dot-empty"></span>
<span class="dot dot-empty"></span>
<span class="dot dot-empty"></span>
</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>
</div>
</div>
<div id="result" class="result jumbotron screen">
<div class="content">
<h1>Time passes for you like that of a<br/><span class="age">34</span>-year-old</h1>
<p>Pretty accurate, but things are starting to slow down.</p>
</div>
</div>
<?php get_footer();