-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.html
More file actions
62 lines (55 loc) · 1.47 KB
/
Copy pathinterface.html
File metadata and controls
62 lines (55 loc) · 1.47 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
56
57
58
59
60
61
62
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Test Maureen</title>
<link rel="stylesheet" href="css/maureen.css">
</head>
<body>
<script src="/js/pixi.min.js"></script>
<script src="/js/pixi-viewport.min.js"></script>
<div class="admin_box">
<label class="switch">
<input type="checkbox" id="admin_checkbox">
<span class="slider round"></span>
</label>
<span class="admin_text">Admin Mode</span>
</div>
<script src="/js/app.js"></script>
<!-- The Modal -->
<div id="adminModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<form action="/add_entry" method="post">
<div class="modal-header">
<span class="close">×</span>
<h2>Add a new Entry</h2>
</div>
<div class="modal-body">
<div class="form_line">
<label for="lposX">X position:</label>
<input type="number" id="posX" name="x">
</div>
<div class="form_line">
<label for="lposY">Y position:</label>
<input type="number" id="posY" name="y">
</div>
<div class="form_line">
<label for="lImg">Image name:</label>
<input type="text" id="img_name" name="img">
</div>
<div class="form_line">
<label for="ltxt">Text:</label>
<textarea name="txt"></textarea>
</div>
</div>
<div class="modal-footer">
<div class="button">
<button type="submit">Save Entry</button>
</div>
</div>
</form>
</div>
</div>
</body>
</html>