-
Notifications
You must be signed in to change notification settings - Fork 3
/
newevent.html
134 lines (109 loc) · 5.29 KB
/
newevent.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Create-Event</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous" />
<link rel="icon" href="images/logo.png" type="image/icon type" />
<style>
body {
background-image: linear-gradient(to right, #7F8C8D, #000000);
}
.subbtn {
width: -webkit-fill-available;
justify-content: center;
position: relative;
left: 0%;
padding: 6px;
border-radius: 10px;
background-color: #555555;
color: #fff;
}
.subbtn:hover {
background-color: #7F8C8D;
}
</style>
</head>
<body>
<div class="mask d-flex align-items-center h-100 gradient-custom-3">
<div class="container h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-12 col-md-9 col-lg-7 col-xl-6">
<div class="card"
style="border-radius: 15px;margin: 10px; background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));">
<div class="card-body p-5">
<h2 class="text-uppercase text-center mb-5">ADD AN EVENT</h2>
<form action="/create" method="post">
<div class="form-outline mb-4">
<label class="form-label" for="form3Example1cg">Event Name</label>
<input type="text" id="form3Example1cg" class="form-control form-control-lg" name="name" />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="form3Example3cg">
Description</label>
<input type="text" id="form3Example3cg" class="form-control form-control-lg" name="description" />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="form3Example4cdg">Time</label>
<input type="text" id="form3Example4cdg" class="form-control form-control-lg" name="time" />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="form3Example4cg">Start Date</label>
<input type="date" id="form3Example4cg" class="form-control form-control-lg" name="dateStart" />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="form3Example4cdg">End Date</label>
<input type="date" id="form3Example4cdg" class="form-control form-control-lg" name="dateEnd" />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="form3Example4cdg">Registration Fee</label>
<input type="text" id="form3Example4cdg" class="form-control form-control-lg"
name="registerationFee" />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="form3Example4cdg">Cash Prize</label>
<input type="text" id="form3Example4cdg" class="form-control form-control-lg" name="cashPrice" />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="form3Example4cdg">Upload Photo</label>
<input type="text" id="form3Example4cdg" class="form-control form-control-lg" name="photo" />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="form3Example4cdg">Venue</label>
<input type="text" id="form3Example4cdg" class="form-control form-control-lg" name="venue" />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="form3Example4cdg">Contact No</label>
<input type="text" id="form3Example4cdg" class="form-control form-control-lg" name="contact" />
</div>
<div class="form-outline mb-4">
<label for="mode">Choose a Mode</label>
<select name="mode" id="mode">
<option value="online">Online</option>
<option value="offline">Offline</option>
</select>
</div>
<div class="form-outline mb-4">
<label for="category">Choose a Mode</label>
<select name="category" id="category">
<option value="Indoor">Indoor</option>
<option value="Outdoor">Outdoor</option>
</select>
</div>
<div class="d-flex justify-content-center">
<input type="submit" value="ADD" class="subbtn" />
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>