-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplatesSelectionMenu.html
More file actions
55 lines (50 loc) · 1.29 KB
/
templatesSelectionMenu.html
File metadata and controls
55 lines (50 loc) · 1.29 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
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test Player</title>
</head>
<body>
<h2>Templates menu</h2>
<h4>Enter name and description</h4>
<tr>
<th>
<input id="addName" type="text" name="firstName" value="Name">
</th>
<th>
<input id="addDesc" type="text" name="description" value="Description">
</th>
<th>
<input id="addBeginTime" type="text" name="time" value="1">
</th>
<th>
<input id="addEndTime" type="text" name="time" value="3">
</th>
<th>
<button id="addButton" type="button">Add</button>
</th>
</tr>
<br>
<form id="myForm">
<table id="myTable">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Begin Template</th>
<th>End Template</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
</form>
<!--We are using node <script>document.write(process.version.node)</script>,-->
<!--Chrome <script>document.write(process.versions.chrome)</script>,-->
<!--and Electron <script>document.write(process.versions.electron)</script>.-->
<script>
require('./templateForm');
</script>
</body>
</html>