-
Notifications
You must be signed in to change notification settings - Fork 2
/
91b827ce-52ce-4fe8-9a06-fb9ea6bf6533.html
69 lines (65 loc) · 2.19 KB
/
91b827ce-52ce-4fe8-9a06-fb9ea6bf6533.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
<!-- Clue 1b -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clue 1</title>
<link rel="stylesheet" href="./styles.css" />
<link rel="icon" href="./assets/mpl-logo.png" type="image/png" />
</head>
<body>
<div class="container">
<div class="clue-box">
<h1>Clue 1</h1>
<div class="poem">
<p>
I hold the future in orderly rows, <br />
Yet I am bound by what everyone knows.<br />
I guide the flow of both work and play,<br />
Without my plan, chaos would sway.<br />
I'm seen in pairs, side by side,<br />
I'm seen by students, workers, and more,<br />
A silent commander, behind every door.<br />
What am I, this structure of hours,<br />
That shapes your day with unseen powers?<br />
</p>
</div>
<input type="text" id="answer2" placeholder="Enter your answer" />
<button onclick="checkAnswer()">Submit</button>
<p id="message2" class="message"></p>
</div>
</div>
<script>
async function checkAnswer() {
const userAnswer = document.getElementById("answer2").value.trim();
const response = await fetch(
"https://mpl-treasurehunt-be.onrender.com/checkAnswer",
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
question_number: 2,
answer: userAnswer,
}),
}
);
if (response.ok) {
const data = await response.json();
if (data.correct) {
document.getElementById("message2").textContent =
"Correct! Advance to {{location}} for your next clue";
} else {
document.getElementById("message2").textContent =
"Wrong answer. Try again!";
}
} else {
document.getElementById("message2").textContent =
"Error checking answer. Please try again.";
}
}
</script>
</body>
</html>