-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·335 lines (298 loc) · 13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>OSS BVCOE</title>
<link rel="shortcut icon" type="image/png" href="favicon.ico"/>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<link href="css/agency.css" rel="stylesheet">
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg fixed-top" id="mainNav">
<div class="container">
<img src="./img/oss_white.png" class="logo m-2">
<a class="navbar-brand js-scroll-trigger" href="#page-top">OSS BVCOE</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#register">Register</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#instructor">Instructor</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#faq">Course Content</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#faq">FAQ</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="particles-js"></div>
<!-- Header -->
<header class="masthead">
<div class="container">
<img id="oss_logo" style="margin-top : 65px; margin-bottom : 45px" src="./img/oss_lg_white.png" alt="oss img">
<img id="oss_logo" style="" src="./img/pbfi.png" alt="oss img">
<div class="intro-text">
<div id="register" class="intro-heading text-uppercase">Workshop for GSoC 2019</div>
<div class="intro-lead-in">For open source enthusiasts who want to apply for GSoC 2019.</div>
<div class="intro-lead-in">19/02/19, 2:30 pm</div>
<!-- <a class="btn btn-primary btn-xl text-uppercase js-scroll-trigger" href="#services">Tell Me More</a> -->
<!-- Button trigger modal -->
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#exampleModal">
Register For This Event
</button>
<!-- Modal -->
<div class="modal fade bd-example-modal-lg" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Register</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form action="https://limitless-cliffs-82834.herokuapp.com/Student" method="post" id="myForm" name="form_name">
<div class="row">
<div class="col">
<label for="">First Name</label>
<input type="text" name="f_name" class="form-control" placeholder="First name" required>
</div>
<div class="col">
<label for="">Last Name</label>
<input type="text" name="l_name" class="form-control" placeholder="Last name">
</div>
</div>
<div class="row">
<div class="col">
<label for="">College</label>
<input type="text" name="college" class="form-control" placeholder="College Name">
</div>
</div>
<div class="row">
<div class="form-group col-md-6">
<label for="inputEmail4">Email</label>
<input name="email" type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="example@gmail.com">
</div>
<div class="form-group col-md-6">
<label for="inputPhone">Phone Number</label>
<div class="input-group mb-3">
<div class="input-group-prepend">
<div class="input-group-text">+91</div>
</div>
<input type="text" name="phone" required pattern="[0-9]{10}" maxlength="10" class="form-control" id="inputPhone" placeholder="Phone Number" onkeypress="return isNumber(event)">
</div>
</div>
</div>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Register for ₹100</button>
</form>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="bg-light" id="instructor">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Instructor</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/mankirat.jpg" alt="">
<h4>Mankirat Singh</h4>
<p>OSS Vice President</p>
<h3 class="section-subheading"> Mankirat Singh, Vice President of Open Source Society in association with PaytmBuildForIndia, is an Android and Full Stack Web Developer. He has completed GSoC 2018 with Sugar Labs and has been a Google Code In 2018 Mentor as well. He was a Teaching Assistant at Coding Blocks. He has also been involved with the launch of 2 Android Apps on the play store.
</h3>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://github.com/manki11">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/mankirat-singh-10013013a/">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/mankirat.singh.5220">
<i class="fab fa-facebook-f"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center"></div>
</div>
</div>
</section>
<section id="faq">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase" style="color: #FEC811">FAQ</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul >
<li id="corcon">
<div class="timeline-panel" >
<div class="timeline-heading" style="color: #bfc0c2">
<h4 class="subheading"> Event Content </h4>
</div>
<div class="timeline-body">
<ul class=" text-mute">
<li>Time Line of GSoC 2019</li>
<li>How to find a project/ organisation?</li>
<li>How to connect with mentors?</li>
<li>How to start contributing?</li>
<li>GSoC Proposal (Very Important!)</li>
<li>Some extra tips and sharing my experience!</li>
</ul>
</div>
</div>
</li>
<li></li>
<li>
<div class="timeline-panel" >
<div class="timeline-heading" style="color: #bfc0c2">
<h4 class="subheading">Who can attend the workshop?</h4>
</div>
<div class="timeline-body">
<p class=" text-mute">Any open source developer who is interested in GSoC 2019</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel" >
<div class="timeline-heading" style="color: #bfc0c2">
<h4 class="subheading">When and Where ?</h4>
</div>
<div class="timeline-body">
<p class=" text-mute"><strong>19/02/19</strong>, Room B-102, Bharati Vidyapeeths College Of Engineering, New Delhi ( A-4 Block, Baba Ramdev Marg, Shiva Enclave, Paschim Vihar, New Delhi, Delhi 110063)</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel" >
<div class="timeline-heading" style="color: #bfc0c2">
<h4 class="subheading">Timings ?</h4>
</div>
<div class="timeline-body">
<p class=" text-mute">The workshop will start at 10:30 am sharp.</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel" >
<div class="timeline-heading" style="color: #bfc0c2">
<h4 class="subheading">What Should I carry ?</h4>
</div>
<div class="timeline-body">
<p class=" text-mute">Please carry your <strong> entry pass </strong>( provided after the registration process ) , your college id, and your laptops.</p>
</div>
</div>
</li>
<!-- <li>
<div class="timeline-panel" >
<div class="timeline-heading" style="color: #bfc0c2">
<h4 class="subheading">End of the course ?</h4>
</div>
<div class="timeline-body">
<p class=" text-mute">Food and drinks after event completion!</p>
</div>
</div>
</li> -->
</ul>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<!-- <div class="col-md-4">
<span class="copyright">Copyright © OSS BVCOE 2018</span>
</div> -->
<div class="col">
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://github.com/OSS-BVP">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/ossbvp/">
<i class="fab fa-facebook-f"></i>
</a>
</li>
</ul>
</div>
<!-- <div class="col-md-4">
<ul class="list-inline quicklinks">
<li class="list-inline-item">
<a href="#">Privacy Policy</a>
</li>
<li class="list-inline-item">
<a href="#">Terms of Use</a>
</li>
</ul>
</div> -->
</div>
</div>
</footer>
<!-- Particles -->
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Contact form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom scripts for this template -->
<script src="js/agency.min.js"></script>
<script>
function isNumber(evt) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
}
</script>
</body>
</html>