-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
54 lines (49 loc) · 1.63 KB
/
Index.html
File metadata and controls
54 lines (49 loc) · 1.63 KB
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
<html>
<head>
<title>Test</title>
<script src="client.js"></script>
</head>
<body>
<section id="echo">
<h2>Video Game Rank by Sales</h2>
<label for="what-to-echo">Rank Number:</label>
<input type="text" id="what-to-echo" />
<button id="echo-btn">Generate</button>
<p id="echoed"></p>
</section>
<section id="add">
<h2>Add a new game to the system</h2>
<label for="rank">Rank Number: </label>
<input type="text" id="rank" />
<label for="name">Name: </label>
<input type="text" id="name" />
<label for="platform">Platform: </label>
<input type="text" id="platform" />
<label for="year">Year: </label>
<input type="text" id="year" />
<label for="genre">Genre: </label>
<input type="text" id="genre" />
<label for="publisher">Publisher: </label>
<input type="text" id="publisher" />
<label for="na_sales">North American Sales: </label>
<input type="text" id="na_sales" />
<label for="eu_sales">Europe Sales: </label>
<input type="text" id="eu_sales" />
<label for="jp_sales">Japan Sales: </label>
<input type="text" id="jp_sales" />
<label for="other_sales">Other Sales: </label>
<input type="text" id="other_sales" />
<label for="global_sales">Global Sales: </label>
<input type="text" id="global_sales" />
<button id="add-btn">Add</button>
<p id="added"></p>
</section>
<section id="delete">
<h2>Remove a game from the system</h2>
<label for="what-to-delete">Rank Number:</label>
<input type="text" id="what-to-delete" />
<button id="del-btn">Delete</button>
<p id="deleted"></p>
</section>
</body>
</html>