-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateEvents.html
More file actions
39 lines (36 loc) · 1.38 KB
/
createEvents.html
File metadata and controls
39 lines (36 loc) · 1.38 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
<!DOCTYPE html>
<html lang = "en">
<head>
<title>Create Events</title>
<!-- Google Fonts - Monterrat -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="events.css">
</head>
<body id="eventBody">
<p>Create Events</p>
<form id="inputs">
<div>
Event Description: <input id="desc" type="text" name="Description" placeholder="Enter Description"><br>
</div>
<div>
Location: <input id="local" type="text" name="Location" placeholder="Enter location of event"><br>
</div>
<div>
Start time: <input id="stime" type="time" name="start" value="12:00"><br>
</div>
<div>
End time: <input id="etime" type="time" name="end" value="13:00"><br>
</div>
<div>
Date: <input id="eventdate" type="date" name="Date" value="2019-01-01"><br>
</div>
</form>
<button id="submitButton" onclick="submit()">Submit</button>
<div id="homeloc">
<button id="homeButton" onclick="returnToMain()">Home</button>
</div>
</body>
<script src="./js/eventControl.js"></script>
<script src="js/lightMode.js"></script>
</html>