-
Notifications
You must be signed in to change notification settings - Fork 0
/
editor.html
31 lines (26 loc) · 1.09 KB
/
editor.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Game Editor</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href='./editor.css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src='editor.js'></script>
</head>
<body>
<h3>Trivia Master Game Editor</h3>
<div id="games">
<input type='button' value='Add Game' id='btnAdd'>
<table id='tblGames' border='1px'><tr><th>Team Name</th><th>Score</th></tr></table>
</div>
<div id='gameEditFields'>
Date: <input type='date' id='txtDate' class='editField'><br>
Game Name: <input type='text' id='txtName' class='editField'><br>
Game Location: <input type='text' id='txtLocation' class='editField'><br>
<input type='button' id='btnSave' value='Save'><input type='button' id='btnCancel' value='Cancel'>
</div>
</body>
</html>