-
Notifications
You must be signed in to change notification settings - Fork 3
/
add.html
53 lines (53 loc) · 1.91 KB
/
add.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/datetimepicker.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="top_right">
<span class="go-back">
<a href="#" class="add-edit-event">
<img class="icon back-icon" src="img/back-black.png" />
</a>
</span>
<span class="night_mode ">
<img class="icon night-icon" src="img/night-black.png" />
</span>
</div>
<div class="container">
<div class="content" id="content">
<form class="form" action="#">
<div class="row">
<div class="col-md-6 offset-md-3">
<h5>Add Countdown</h5>
</div>
</div>
<div class="row">
<div class="col-md-6 offset-md-3">
<input type="text" class="" id="event_name" placeholder="Event name" />
</div>
</div>
<div class="row">
<div class="col-md-6 offset-md-3">
<input type="text" class=" demo" id="event_date" placeholder="mm-dd-yyyy" />
</div>
</div>
<div class="row">
<div class="col-md-6 offset-md-3">
<a href="#" class="btn btn-outline-secondary btn-sm submit" id="update_event">save</a>
</div>
</div>
</form>
</div>
</div>
<script src="js/jquery.min.js" ></script>
<script src="js/tether.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/datetimepicker.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>