-
Notifications
You must be signed in to change notification settings - Fork 0
/
add2.html
104 lines (60 loc) · 2.76 KB
/
add2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Add Task | Daily Planner</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Audiowide" rel="stylesheet">
<script src="js/js.js"></script>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body style="padding-top:0px">
<nav class="navbar navbar-inverse" style="font-family:Roboto,Helvetica,Arial,sans-serif;">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand brand2" href="index.html" class=""><font color="#17AA1C">Daily</font>planner</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="index.html"> Home </a></li>
<li><a href="tasks.html">Tasks </a></li>
<li><a href="events.html">Event</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<h2 class="page-header">Add Event</h2>
<form id="add2-event-form" role="form" action="events.html">
<div class="form-group">
<label>Event</label>
<input type="text" class="form-control" id="task2" placeholder="Enter event" required>
</div>
<div class="form-group">
<label>Date</label>
<input type="date" id="date2" class="form-control" required>
</div>
<div class="form-group">
<label>Time</label>
<input type="time" id="time2" class="form-control" required>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div><!-- /.container -->
<div class="sec4" style="margin-top:188px">
<span style="font-family: 'Audiowide', cursive;"><font color="#17AA1C">Daily</font>Planner </span> © Noor Mohammed
</div>
<script src="js/bootstrap.js"></script>
</body>
</html>