This repository has been archived by the owner on Feb 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dating in the Juul Room</title>
<meta charset="UTF-8">
<meta name="description" content="A dating simulator based on confessions from Gunn Confessions."/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
<script src="./main.js" charset="utf-8"></script>
</head>
<body>
<div class="title" id="title"></div>
<div class="idpausd hidden" id="rapididentity">
<div class="header">Palo Alto USD Portal</div>
<div class="content">
<p>Who are you?</p>
<div class="portraits">
<div class="person">
<img src="./images/betsy.png" alt="Ugly girl" data-person="FM">
<span class="person-name">Betsy Lang</span>
</div>
<div class="person">
<img src="./images/charles.png" alt="Ugly boy" data-person="MM">
<span class="person-name">Charles Wichenson</span>
</div>
</div>
<p>Who do you like?</p>
<div class="portraits">
<div class="person">
<img src="./images/justin.jpg" alt="Pretty boy" data-person="MO">
<span class="person-name">Justin Bieber</span>
</div>
<div class="person">
<img src="./images/selena.jpg" alt="Pretty girl" data-person="FO">
<span class="person-name">Selena Gomez</span>
</div>
</div>
<p class="hidden" id="error">A valid person and significant other is required.</p>
<button id="start">Login</button>
</div>
<div class="game hidden" id="game-wrapper">
<div class="log">
<div id="game-log"></div>
<div class="buttons">
<button class="game-btn">reveal a secret</button>
<button class="game-btn">small talk</button>
<button class="game-btn">unpopular opinion</button>
</div>
</div>
<div class="events" id="events"></div>
</div>
</div>
</body>
</html>