-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 3.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"
/>
<title>AI Emoji Interview</title>
</head>
<body>
<div id="page">
<div class="logo"></div>
<div id="startScreen" class="screen enabled">
<div class="entryText">Tap to start the game for everyone!</div>
</div>
<div id="questionScreen" class="screen off">
<div id="questionPanel">
<div id="jobName">Galactic Animal Whisperer</div>
<div id="questionText">
Ah, I see a natural approach here! You have a refreshing calmness
and a gentle presence, perfect for creatures with complex
sensitivities. Tell me, how would you approach building trust with
an alien species known for being cautious around new environments?
</div>
<div id="instructions">Enter 3 emojis to respond</div>
</div>
<div id="pickers">
<div id="picker1" class="picker"></div>
<div id="picker2" class="picker"></div>
<div id="picker3" class="picker"></div>
</div>
<div id="emojiPickerBackground">
<div id="emojiPicker"></div>
</div>
<div class="timer">
<div id="questionTimerBar" class="timerBar"></div>
</div>
</div>
<div id="thinkingScreen" class="screen off">
<div class="entryText">Interviewer is thinking...</div>
</div>
<div id="resultScreen" class="screen off">
<div id="resultPanel">
<div id="resultPanelTitle">🥳 Coke and Code got the job!</div>
<div id="resultPanelContent">
<div class="resultText">
Welcome to the interview! We’re hiring for a position with the
Intergalactic Animal Conservation Society. This role requires
connecting with rare and exotic creatures across the cosmos,
soothing them, and understanding their needs.
</div>
<div class="resultEmojis">🥝🌾🍧</div>
<div class="resultText">
Welcome to the interview! We’re hiring for a position with the
Intergalactic Animal Conservation Society. This role requires
connecting with rare and exotic creatures across the cosmos,
soothing them, and understanding their needs.
</div>
<div class="resultEmojis">🥝🌾🍧</div>
<div class="resultText">
Welcome to the interview! We’re hiring for a position with the
Intergalactic Animal Conservation Society. This role requires
connecting with rare and exotic creatures across the cosmos,
soothing them, and understanding their needs.
</div>
<div class="resultEmojis">🥝🌾🍧</div>
</div>
</div>
</div>
</div>
<script type="module" src="/src/logic.ts"></script>
<script type="module" src="/src/client.ts"></script>
</body>
</html>