This repository has been archived by the owner on Jul 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (54 loc) · 1.76 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>Simple Events Manager</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./static/events.css">
<script type="text/javascript" src="./static/events-start.js"></script>
</head>
<body>
<div id="header">
<h1>Simple Events Manager</h1>
</div>
<div class="container">
<div class="left-side">
<form id="choose-person">
<h4>Choose one here:</h4>
<select id="people" onchange="loadEvents(event)">
</select>
</form>
</div>
<div class="right-side right-side-top">
<table id="events">
<tr>
<th>Event Name</th>
<th>Event Description</th>
<th>Datetime</th>
</tr>
</table>
<p id="events-no-data">
<br/> Choose person first.
</p>
</div>
</div>
<div class="container bottom-container">
<div class="left-side buttons">
<button class="reload append-button" onclick="addEvent();">Append</button>
</div>
<div class="right-side inputs">
<h4>Append new event for current user:</h4>
<form id="new-event">
<div class="first-input-line" style="width: 105%;">
<input type="text" id="person-name" name="person" placeholder="People name" style="width: 46%;">
<input type="text" id="event-name" name="name" placeholder="Event name" style="width: 46%;">
</div>
<input type="text" id="description" name="description" placeholder="Event description">
<input type="date" id="event-time" name="time" placeholder="Event time">
</form>
</div>
</div>
<div id="footer">
<p>Powered by Simple-Python-HTTP-Server</p>
</div>
</body>
</html>