-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·77 lines (62 loc) · 2.38 KB
/
index.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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.cdnfonts.com/css/helvetica-neue-55" rel="stylesheet">
<!-- Include Quill stylesheet -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<title>Eventeintrag</title>
</head>
<body>
<div class="logo-container">
<img src="logo.png" class="logo"><br><br><br>
<label for"page-turn-select">Zeit zum Umblättern</label>
<select id="page-turn-select">
<option value='5'>5 Sekunden</option>
<option value='10'>10 Sekunden</option>
<option value='15'>15 Sekunden</option>
<option value='30'>30 Sekunden</option>
<option value='45'>45 Sekunden</option>
<option value='60'>1 Minute</option>
</select>
<label for"display-order-select">Anzeige</label>
<select id="display-order-select">
<option value='1'>First Added</option>
<option value='2'>Last Added</option>
<option value='3'>Earliest End</option>
<option value='4'>Latest End</option>
</select>
<label for"mode-select">Modus</label>
<select id="mode-select">
<option value='dark'>Dunkel</option>
<option value='light'>Hell</option>
</select>
</div>
<div class="wrapper">
<div class="input-container">
<label for="event-input">Event:</label>
<input id="event-input" type="text" placeholder="Geben Sie den Eventnamen ein...">
<label for="editor-container">Text:</label>
<div id="editor-container">
<div id="editor"></div>
</div>
<!-- <textarea id="text" placeholder="Beschreiben Sie das Event..."></textarea> -->
<label for="from-time">Von:</label>
<input type="datetime-local" id="from-time" placeholder="Startdatum und -Zeit">
<button id="instant-button">Sofort</button>
<label for="to-time">Bis:</label>
<input type="datetime-local" id="to-time" placeholder="Enddatum und -zeit">
<button id="upload-button">Hochladen</button>
</div>
<div class="events-container">
<p id="events-display"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>