-
Notifications
You must be signed in to change notification settings - Fork 11
/
editor.html
36 lines (35 loc) · 1.33 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
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta property="og:title" content="Twitch Teletext" />
<meta property="og:description" content="A Teletext for Twitch" />
<meta property="og:locale" content="de_DE" />
<meta property="og:url" content="https://teletext.jvpeek.de" />
<meta property="og:image" content="https://teletext.jvpeek.de/img/logo.png" />
<title>Teletext</title>
<link rel="stylesheet" href="css/editor.css" />
<script type="module" src="js/editor.js" charset="utf-8"></script>
</head>
<body>
<div id="debug"></div>
<div id="charlist"></div>
<div id="ColorContainer">
Text Colors:
<div id="fgColors"></div>
Background Colors:
<div id="bgColors"></div>
</div>
<div>
<label for="titleInput">Title: </label><input id="titleInput" type="text" placeholder="CHANGE ME" />
<!--<input id="trueTele" type="checkbox" />TrueTeletext-->
</div>
<button id="resetButton" class="button" style="background-color: RED; color: white">Reset</button>
<button id="exportButton" class="button" style="background-color: green; color: white">Export</button>
<br />
<div id="teletext">
<div id="content"></div>
</div>
<script src="https://extension-files.twitch.tv/helper/v1/twitch-ext.min.js"></script>
</body>
</html>