-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (40 loc) · 1.2 KB
/
index.html
File metadata and controls
41 lines (40 loc) · 1.2 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
40
41
<!DOCTYPE html>
<html>
<head>
<title>JS Project 1</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<form action="#" onsubmit="submitForm(this)" >
<fieldset>
<legend>Event CountDown:</legend>
<div class="input-field">
<label for="event_name">Event Name<span>*</span>:</label>
<input type="text" name="event_name" class="required">
</div>
<div class="clr"></div>
<div class="input-field">
<label for="event_date">Event Date<span>*</span>:</label>
<input type="date" name="event_date" class="required">
</div>
<div class="clr"></div>
<div class="input-field">
<label for="event_time">Event Time:</label>
<input type="time" name="event_time">
</div>
<div class="clr"></div>
<div class="input-field">
<input type="submit" name="submit" value="Start">
</div>
</fieldset>
</form>
<div style="display: inline-block;margin-top: 10px">
<button id="getEvents" onclick="getEvents();">Get All Events</button>
<button id="removeAllEvents" onclick="removeAllEvents();">Remove All Events</button>
</div>
<div id="eventDetails">
</div>
</body>
<script src="js/jquery.js"></script>
<script src="js/script.js"></script>
</html>