-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.13 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Rock-Paper-Scissors</title>
</head>
<style>
body {
font-family: Helvetica, sans-serif;
text-align: center;
}
</style>
<body>
<h1 id='title'>Welcome Stranger</h1>
<h2>Test your fate with a game of Rock-Paper-Scissors!</h2>
<div>
<button onclick='playGame("rock")'>Rock</button>
<button onclick='playGame("paper")'>Paper</button>
<button onclick='playGame("scissors")'>Scissors</button>
</div>
<p id='result' hidden></p>
<script>
const searchParams = new URLSearchParams(location.search);
const name = searchParams.get('name');
if (name) {
document.getElementById('title').innerText = `Welcome ${name}`
}
function playGame (option) {
fetch('/', { method: 'POST', body: option })
.then(response => response.text())
.then(text => {
const resultElement = document.getElementById('result')
resultElement.innerText = text
resultElement.hidden = false
})
}
</script>
</body>
</html>