-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
27 lines (27 loc) · 930 Bytes
/
options.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Options</title>
<link href="assets/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body class="p-3">
<h1>Add Event</h1>
<form>
<div class="form-group">
<label for="name">Event Name</label>
<input type="text" class="form-control" name="name" id="name" placeholder="Event Name" required />
</div>
<div class="form-group">
<label for="time">Event Time Reminder</label>
<input type="time" class="form-control" name="time" id="time" required />
</div>
<button type="submit" class="btn btn-primary mt-3">
Add a New Event
</button>
</form>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/options.js"></script>
</body>
</html>