blob: b7d25794f6934404159e1bb065fe24e5323a7ce7 (
plain)
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
|
<!DOCTYPE html>
<html lang="en-CA">
<head>
<meta charset="UTF-8">
<title>Monopoly Web</title>
<meta name="viewport" content="width=device-width">
<link href="/index.css" rel="stylesheet">
</head>
<body>
<div id="root">
<div id="log"></div>
<div id="login-form-container">
<form id="login-form">
<input name="Username" id="login-input" type="text">
<input value="Login" type="submit">
</form>
</div>
<button id="start" type="button">Start</button>
<button id="roll" type="button">Roll</button>
<button id="buy" type="button">Buy</button>
</div>
<script type="text/javascript" src="/index.js"></script>
</body>
</html>
|