-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
33 lines (27 loc) · 813 Bytes
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Blunder Watching</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="./popup.css" media="screen" />
<style>
</style>
<script src="popup.js"></script>
</head>
<body>
<main class="wrapper">
<h1>Blunder Watching</h1>
<h3>I am playing as</h3>
<form id="radioForm" class="form">
<label class="label">
<input type="radio" name="option" value="white" id="white" class="input">White<br>
</label>
<label class="label">
<input type="radio" name="option" value="black" id="black" class="input">Black<br>
</label>
<button id="sendMessageButton" class="button">Start Analyzing</button>
</form>
</main>
</body>
</html>