-
Notifications
You must be signed in to change notification settings - Fork 0
/
event.html
64 lines (63 loc) · 2.24 KB
/
event.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<html lang="en-US">
<title>Enter Event Details</title>
<link rel="stylesheet" href="css/flatlybootstrap.css">
</head>
<body>
<div class="container">
<div class="col-md-6 col-md-offset-3">
<h1 style="font-family: Supercell-Magic"> Enter Event Details </h1>
<form action="" method="POST" >
<div class="form-group">
<label for="ename" >Event Name</label>
<input type="text" class="form-control" id="ename" placeholder="John Doe" required>
</div>
<div class="form-group">
<label for="organizer" >Organizer</label>
<input type="text" class="form-control" id="organizer" placeholder="John Doe Pvt. Ltd" required>
</div>
<div class="form-group">
<label for="email" >Email</label>
<input type="text" class="form-control" id="email" placeholder="[email protected]" required>
</div>
<div class="form-group">
<label for="phone" >Contact No.</label>
<input type="number" class="form-control" id="phone" placeholder="9843256789" required>
</div>
<div class="form-group">
<label for="address" >Address</label>
<input type="text" class="form-control" id="address" placeholder="Kathmandu" required>
</div>
<div class="form-group">
<label for="sel1">Select:</label>
<select class="form-control" id="sel1">
<option>Private</option>
<option>Public</option>
</select>
</div>
<div class="form-group">
<label for="crdate" >Created Date</label>
<input type="date" class="form-control" id="crdate" required>
</div>
<div class="form-group">
<label for="desc">Description</label>
<textarea class="form-control" rows="5" id="desc" placeholder="Enter Event Details"></textarea>
</div>
<div class="form-group">
<label for="gmap">Select your location</label>
</div>
<div class="checkbox">
<label><input type="checkbox" >Remember Me </label>
</div>
<br>
<button type="submit" class="btn btn-default">Submit</button> <button type="reset" class="btn btn-danger" align="right">Reset</button>
<br>
</form>
</div>
</div>
</body>
</html>