forked from DSC-JSS-NOIDA/foss-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·357 lines (340 loc) · 12.6 KB
/
index.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html" />
<title>Foss Events</title>
<!-- CSS only -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./Frontend/style.css" />
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
/>
</head>
<body>
<!--Preloader Class-->
<div class="forloader">
<div id="loader2"></div>
</div>
<!--Background animation-->
<div class="home-area" id="particles-js"></div>
<div id="contents-page">
<!-- Navbar Starts -->
<nav class="navbar navbar-light bg-dark navbar-expand-md">
<a class="navbar-brand" href="/#aboutUs">FossEvents</a>
<div class="navbar-nav ml-auto toogle-slider">
<div class="custom-control custom-switch">
<input
type="checkbox"
class="custom-control-input"
id="customSwitches"
/>
<label class="custom-control-label" for="customSwitches"></label>
</div>
</div>
<button
class="navbar-toggler"
data-toggle="collapse"
data-target="#list"
aria-label="Toggle Navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="list">
<ul class="navbar-nav">
<li class="navbar-item">
<a href="/#aboutUs" class="nav-link">About Us</a>
</li>
<li class="navbar-item">
<a href="/#events" class="nav-link">Events</a>
</li>
<li class="navbar-item">
<a href="/#contactus" class="nav-link">Contact Us</a>
</li>
</ul>
</div>
</nav>
<!-- Navbar Ends -->
<!-- Main Content -->
<section class="container" id="aboutUs">
<div padding-bottom:20px>
<h1 id="mainHeading" class="pb-3">
Searching for an open source program? Here we are!
</h1>
<hr style="border: 1px solid #5cb85c" />
<p id="paraGraph">
Greetings! Hope you all are doing good. Want to contribute to open
source and don't know what program to participate in? Welcome to our
website, we keep track of nearly every open source program that is
held across the world. We post all the necessary details related to
any particular program you want to take part in, whether it is
active or not, their registration details, their page link and so
on. It will be super easy for you to know about any program and
choose accordingly. Hope you like our services. Cheers.
</p>
</div>
</section>
<div class="container-fluid mt-5" id="events">
<!-- Events Filter -->
<div class="background-cont">
<div class="d-flex filter-container">
<!-- Search Filter -->
<div class="form-group flex-fill search-input">
<i class="fa fa-search icon"></i>
<input
class="form-control"
id="search-filter"
placeholder="Search for an event here"
/>
<div class="autocom-box">
<!-- here list are inserted from javascript -->
</div>
</div>
<!-- Search Filter Ends -->
<!-- Event Status Filter -->
<div class="form-group">
<label class="filter-labels">Status</label>
<select
class="form-control"
id="event-status-filter"
name="Event Status Filter"
>
<option value="All">All</option>
<option value="Online">Online</option>
<option value="Offline">Offline</option>
</select>
</div>
<!-- Event Status Filter Ends -->
<!-- Event Date Filter -->
<!-- Event Date Range Start -->
<div class="form-group">
<label class="filter-labels">Event Start Date</label>
<input type="date" class="form-control" id="range-start" />
</div>
<!-- Event Date Range Start Ends -->
<!-- Event Date Range End -->
<div class="form-group">
<label class="filter-labels">Event End Date</label>
<input type="date" class="form-control" id="range-end" />
</div>
<!-- Event Date Range End Ends -->
<!-- Event Date Filter Ends -->
</div>
</div>
<!-- Events Filter Ends-->
<!-- Card Container -->
<div class="card-container"></div>
<!-- Card-Container Ends -->
</div>
<!-- Main Content Ends -->
<!-- Footer starts -->
<section id="contactus">
<p id="contact-head">Contact us</p>
<p id="contact-message">
Do you have any questions? Please do not hesitate to contact us
directly. Our team will come back to you within a matter of hours to
help you.
</p>
<div class="container">
<div id="form-footer" class="row">
<div class="col-md-8">
<div class="center-div">
<div class="contact-table">
<form
action="https://formspree.io/f/xdoynnyq"
method="POST"
id="my-form"
>
<div class="input-container">
<label class="contact-inputs" for="validationCustom01"
>Your Name :</label
>
<input
type="text"
class="form-control contact-inputs-tags"
id="validationCustom01"
placeholder="Enter your name"
name="name"
/>
</div>
<div class="input-container">
<label class="contact-inputs" for="validationCustom02"
>Your Email :</label
>
<input
type="email"
class="form-control contact-input-tags"
id="validationCustom02"
placeholder="Enter your email address"
name="email"
/>
</div>
<div class="input-container">
<label class="contact-inputs" for="validationCustom03"
>Message :</label
>
<textarea
type="text"
class="form-control contact-input-tags"
id="validationCustom03"
placeholder="Enter your message here . . ."
rows="4"
name="message"
></textarea>
</div>
<div>
<button class="btn btn-md" type="submit">SUBMIT</button>
</div>
</form>
<div id="status"></div>
</div>
</div>
</div>
<div id="social-section" class="col-md-4">
<div
style="
padding: 0px 20px;
padding-bottom: 15px;
border-bottom: 3.5px solid grey;
"
>
<p class="footer-details">
<a href="https://www.dscjss.in/" target="_blank"
><span class="contacts"
><i
class="fa fa-map-marker mr-5 social-icon"
aria-hidden="true"
></i
>DSC JSS Noida</span
></a
>
</p>
<p class="footer-details">
<a href="mailto:[email protected]" target="_blank"
><span class="contacts"
><i
class="fa fa-envelope mr-5 social-icon"
aria-hidden="true"
></i
>[email protected]</span
></a
>
</p>
<p class="footer-details">
<a href="tel:+91 9876543310"
><span class="contacts"
><i
class="fa fa-phone mr-5 social-icon"
aria-hidden="true"
></i
>+91 9876543310</span
></a
>
</p>
</div>
<div id="social-media-icons">
<a
href="https://www.facebook.com/dscjssnoida/"
target="_blank"
title="Facebook"
><i
class="fa fa-facebook-square social-media"
aria-hidden="true"
></i
></a>
<a
href="https://www.linkedin.com/company/dsc-jssaten/"
target="_blank"
title="Linkedin"
><i
class="fa fa-linkedin-square social-media"
aria-hidden="true"
></i
></a>
<a
href="https://twitter.com/DSCJSSATEN"
target="_blank"
title="Twitter"
><i class="fa fa-twitter social-media" aria-hidden="true"></i
></a>
<a
href="https://github.com/DSC-JSS-NOIDA"
target="_blank"
title="Github"
><i class="fa fa-github social-media" aria-hidden="true"></i
></a>
<a
href="https://www.instagram.com/dscjssaten/?igshid=9ubqtp1ssqsi"
target="_blank"
title="Instagram"
><i
class="fa fa-instagram social-media"
aria-hidden="true"
></i
></a>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="footer">
Made with ❤ By <a href="https://dscjss.in">DSC JSSATEN</a>
<a
href="https://github.com/dsc-jss-noida"
className=" text-black github-footer"
rel="noopener noreferrer"
target="_blank"
>
</a>
</div>
<img
src="./Frontend/data/img/Main_logo.svg"
className="mt-2"
width="250"
alt=""
/>
</footer>
<!-- Footer ends -->
<!--Scroll to top starts-->
<a href="#" class="to-top" style="text-decoration: none; color: white">
<i class="fa fa-angle-up"></i>
</a>
<!--Scroll to top ends-->
<script src="./Frontend/js/getEvent.js"></script>
<!--Particle js background-->
<script src="./Frontend/js/particle.js"></script>
<script src="./Frontend/js/app.js"></script>
<script src="./Frontend/js/jquery-3.2.1.min.js"></script>
<!-- JS, Popper.js, and jQuery -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV"
crossorigin="anonymous"
></script>
<!--Preloader Script-->
<script>
$(window).on("load", function () {
$(".forloader").addClass("complete");
});
</script>
</div>
</body>
</html>