-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>AMIV Events</title>
<meta charset="utf-8"/>
<!-- JS -->
<script src="/dist/bundle.js"></script>
<!-- Stylesheets -->
<link href="./css/style.css" rel="stylesheet" />
<link href="./libraries/bootstrap.min.css" rel="stylesheet" />
<link href="./libraries/featherlight.css" rel="stylesheet" />
</head>
<body>
<h1>Announce</h1>
<h2>Mail Title</h2>
<form>
<input type="text" id="MailTitle" value="AMIV Announce" />
</form>
<h2>Article Selection</h2>
<div id="tableset">
<p id="events"></p>
<div id="key">
<div id="leftkey">
<div class="show_color">
</div>
<p class="keytext">Unselected event</p>
</div>
<div id="middlekey">
<div class="show_color selectedcolor">
</div>
<p class="keytext">Selected event</p>
</div>
<div id="rightkey">
<div class="show_color featuredcolor">
</div>
<p class="keytext">Featured event</p>
</div>
</div>
<div id="buttonrow">
<button id="preview" class="buttons">Preview</button>
<button id="reset" class="buttons">Reset</button>
<button id="send" class="buttons">Send</button>
</div>
</div>
<br />
<h2>Rendered HTML</h2>
<textarea id="target" cols="100" rows="15" style="overflow:scroll"></textarea>
</body>
</html>