-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform.html
More file actions
26 lines (26 loc) · 1.32 KB
/
form.html
File metadata and controls
26 lines (26 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<form action = "/add" method = "GET ">
<div class=container>
<div class="form-group">
<label for=sdate>Start Date</label>
<input type="date" class="form-control" id="StartDate" name ="sdate" placeholder="Start Date">
<label for=edate>End Date</label>
<input type="date" class="form-control" id="EndDate" name ="edate" placeholder="End Date">
</div>
<div class="form-group">
<label for="name">Event Name</label>
<input type="text" class="form-control" name="name" id="InputName" placeholder="Event Name">
</div>
<!--<div class="form-group">
<label for="InputDescription">Description</label>
<textarea rows= 5 type="description" class="form-control" name="descrip" id="InputDescription" aria-describedby="passHelp">
</textarea>
</div>-->
<button type = "submit" class="btn btn-primary" >Add</button>
</div>
</form>
</body>