-
Notifications
You must be signed in to change notification settings - Fork 2
/
2b9f9493-dbdf-4865-bf1c-a4b2b54b3107.html
68 lines (63 loc) · 1.97 KB
/
2b9f9493-dbdf-4865-bf1c-a4b2b54b3107.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
<!-- CLue 4b -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clue 4</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 4</h1>
<div class="poem">
<p>
Year= Birth year of the mathematician who's known for Bose-Einstein
Theory <br />
<br />
(year)^3 + {(year * 91400) - 1169470} = NUMBER <br />
<br />
Now connect the numbers to form a meaningful word using Numeric
Cipher.
</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: 17,
answer: userAnswer,
}),
}
);
if (response.ok) {
const data = await response.json();
if (data.correct) {
document.getElementById("message2").textContent =
"Secret Clue: 159";
} else {
document.getElementById("message2").textContent =
"Wrong answer. Try again!";
}
} else {
document.getElementById("message2").textContent =
"Error checking answer. Please try again.";
}
}
</script>
</body>
</html>