-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRegistration.html
More file actions
402 lines (379 loc) · 16.6 KB
/
Registration.html
File metadata and controls
402 lines (379 loc) · 16.6 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
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<link rel="stylesheet" type="text/css" href="lib/sweet-alert.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="media-queries.css">
<link rel="stylesheet" href="slick.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
</head>
<body>
<div class="mobile">
<div class="mob-bck">
<div class="mob-temp text-center">
<div class="col-lg-5 col-sm-12 col-md-12">
<h2 class="text-center">Register Now</h2>
<form method="post" name="contactForm">
<div class="item1 box">
<div class="form-group">
<label for="usr">Name:</label>
<input type="text" class="form-control" id="usr" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="eml">Email:</label>
<input type="email" class="form-control" id="eml" placeholder="Your email">
</div>
<div class="form-group">
<label for="reg">Registration Number:</label>
<input type="text" class="form-control" id="reg" placeholder="Enter Reg No.">
</div>
<div class="form-group">
<label for="pho">Phone Number:</label>
<input type="text" class="form-control" id="pho" placeholder="Enter Phone No.">
</div>
<div class="form-group">
<label for="sel1">Select Event:</label>
<select class="form-control" id="sel1">
<option value="startup" >Startup Street</option>
<option value="kick" >Kick-Startup</option>
<option value="both" >Both</option>
</select>
</div>
<button type="submit" class="addValue btn btn-default btn-lg btn-block">Register Now</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="full">
<div class="container">
<p class="triggr"><b>SHEILD</b></p>
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
<div class="form">
<label>
<input type="text" class="form-control" id="usr" placeholder="Username">
</label>
<label>
<input type="password" class="form-control" id="pwd" placeholder="Password">
</label>
<p class="signin"><a href="#"><b>Sign in</b></a></p>
</div>
</ul>
</div>
</div>
<div class="flex-container">
<div class="container ">
<div class="temp col-lg-7 col-sm-12 col-md-12 text-center">
<p>Come. Create. Conquer</p>
</div>
<div class="col-lg-5 col-sm-12 col-md-12">
<form method="post" name="contactForm2">
<div class="item1 box">
<div class="form-group">
<label for="usr2">Name:</label>
<input type="text" class="form-control" id="usr2" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="eml2">Email:</label>
<input type="email" class="form-control" id="eml2" placeholder="Your email">
</div>
<div class="form-group">
<label for="reg2">Registration Number:</label>
<input type="text" class="form-control" id="reg2" placeholder="Enter Reg No.">
</div>
<div class="form-group">
<label for="pho2">Phone Number:</label>
<input type="text" class="form-control" id="pho2" placeholder="Enter Phone No.">
</div>
<div class="form-group">
<label for="sel2">Select Event:</label>
<select class="form-control" id="sel2">
<option value="startup" >Startup Street</option>
<option value="kick" >Kick-Startup</option>
<option value="both" >Both</option>
</select>
</div>
<button type="submit" class="addValued btn btn-default btn-lg btn-block">Register Now</button>
</div>
</form>
</div>
</div>
</div>
<div class="container">
<div class="text-center one col-lg-12 col-md-12">
<div class="mobile-fix">
<h4><b>SHEILD for you</b></h4>
<h1 style="margin-bottom:20px;">A better way to explore</h1>
<button type="button" class="btn btn-default"><h5><b>Get started now</b></h5></button>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 two">
<h2 class="text-center">Kick-Startup</h2>
<ul>
<li><p>A 24 hours event inspired from the likes of Hack-A-Thon’s around the globe<br></p></li>
<li><p>An event which focuses on the team building aspect of a start-up and the networking skills
required to build the near perfect team that every startup needs to boost to the top of the
market.<br></p></li>
<li>
<p>This event emphasises also on one of the most important phases of a Technical or Product
based Startup-Building and testing the Prototype phase. The rounds of the event aim to
hone an array of skillsets of the participants starting from their networking skills, moving on
to the development of a business inclined mind-set, the creative side of their brain for
problem solving, and the two most important aspects required in the field of
entrepreneurship-Perseverance and Presentation.</p>
</li>
</ul>
</div>
<div class="col-lg-6 col-md-6 text-center"><img src="http://i.imgur.com/7dLxKWK.png"></div></div>
<div class="row">
<div class="col-lg-6 col-md-6 text-center"><img src="http://i.imgur.com/lQbwm2V.png" style="margin-top:80px;"></div>
<div class="col-lg-6 col-md-6 text-left two">
<h2 class="text-center">Startup Street 3.0</h2>
<ul>
<li><p>After the success of the parent event Startup Street and
Startup Street 2.0, We present you Startup street 3.0 .
Previous time, we invited start-ups and teams from all over
India and gave them mentorship and gave them a chance to
pitch their product / services in front of investors. But
maximum ideas were raw and were in their ideation stages
with very little knowledge about business. So, we devised a
national plan to work on students and start-ups all over India
through our events –Prototype and other mentoring
programs and workshops and we gather all of them at
Startup Street 3.0 which will have quality start-ups and
projects that have their product/services ready.</p></li>
<li><p>Again, this event will be a place where innovators,
entrepreneurs, business analysts, marketers and people
from other genres will come under one roof to scale up their
ventures. It will not only consist of people with ideas but will
consist of people who want to do something that they love
and want to explore the world of entrepreneurship. They will
be invited to witness the mega pitches and also interact with
these young entrepreneurs and also share their experiences
in something that they love.</p></li>
</ul>
</div></div>
<div class="text-center three col-lg-12 col-md-12">
<h1>What skills do you need?</h1>
</div>
<div class="group">
<div class="col-lg-3 col-sm-6">
<div class="row">
<div class="col-lg-12">
<div class="thumbnail">
<img style="width:160px;height:160px;" src="images/marketing.png">
<div class="caption text-center">
<h3><b>Marketing</b></h3>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="row">
<div class="col-lg-12">
<div class="thumbnail">
<img style="width:160px;height:160px;" src="images/sales.png">
<div class="caption text-center">
<h3><b>Sales Expert</b></h3>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="row">
<div class="col-lg-12">
<div class="thumbnail">
<img style="width:160px;height:160px;" src="images/management.png">
<div class="caption text-center">
<h3><b>Mangement</b></h3>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="row">
<div class="col-lg-12">
<div class="thumbnail">
<img style="width:160px;height:160px;" src="images/designing.png">
<div class="caption text-center">
<h3><b>Designing</b></h3>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="row">
<div class="col-lg-12">
<div class="thumbnail">
<img style="width:160px;height:160px;" src="images/coders.png">
<div class="caption text-center">
<h3><b>Coders</b></h3>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="row">
<div class="col-lg-12">
<div class="thumbnail">
<img style="width:160px;height:160px;" src="images/technical.png">
<div class="caption text-center">
<h3><b>Technical</b></h3>
</div>
</div>
</div>
</div>
</div><div class="col-lg-3 col-sm-6">
<div class="row">
<div class="col-lg-12">
<div class="thumbnail">
<img style="width:160px;height:160px;" src="images/presenters.png">
<div class="caption text-center">
<h3><b>Presenters</b></h3>
</div>
</div>
</div>
</div>
</div><div class="col-lg-3 col-sm-6">
<div class="row">
<div class="col-lg-12">
<div class="thumbnail">
<img style="width:160px;height:160px;" src="images/finance.png">
<div class="caption text-center">
<h3><b>Finance</b></h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel" >
<div class="anz-image mySlides"><img class="imgattr" src="images/IMG1.jpg" alt=""></div>
<div style="display:none;" class="anz-image mySlides"><img src="images/IMG2.jpg" alt=""></div>
<div style="display:none;" class="anz-image mySlides"><img src="images/IMG3.jpg" alt=""></div>
</div>
<div class="container-fluid end">
<div class="container">
<div class="text-center four col-lg-12 col-md-12">
<h2>Know more about us</h2>
<button type="button" class="btn btn-default"><h5><b><a style="color:white;" href="https://www.sheildvit.com">Know more</a></b></h5></button>
</div>
</div>
</div>
<footer class="footer-distributed ">
<div class="container">
<div class="footer-left">
<h3><b>SHEILD</b></h3>
<h4><b>Event Coordinators:</b> </h4><br>
<p>Navneet Choudhury : 9003750484</p>
<p>Dhruv Tantia : 9790014417</p>
<p class="footer-links">
<a href="#">Home</a>
·
<a href="#">Blog</a>
</p>
<p class="footer-company-name">SHEILD © 2017</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p><span>Tamil Nadu</span> India</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="mailto:sheildvit@gmail.com">sheildvit@gmail.com</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>SHEILD</span>
</p>
</div>
</div>
</footer>
<script src="https://cdn.firebase.com/js/client/2.2.3/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.1.3/firebase.js"></script>
<script src="lib/sweet-alert.min.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyDBTbyCNUz2yuyCTOo23lgCFRaYosnPVxs",
authDomain: "sheild-55d2c.firebaseapp.com",
databaseURL: "https://sheild-55d2c.firebaseio.com",
projectId: "sheild-55d2c",
storageBucket: "sheild-55d2c.appspot.com",
messagingSenderId: "20837553466"
};
firebase.initializeApp(config);
</script>
<script src="fire.js"></script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="./slick.min.js" charset="utf-8"></script>
<script>
$(function(){
var h=document.querySelector('.imgattr').naturalHeight;
var w=document.querySelector('.imgattr').naturalWidth;
$(".carousel").css({
width: w,
height:h,
});
var gal=$(".carousel").find("img").first();
console.log(gal);
var images=$(".carousel").find("img").map(function () {
return $(this).attr("src");
}).get();
var i=0;
setInterval(function () {
i=(i+1)%images.length;
gal.fadeOut(500,function () {
$(this).attr("src",images[i]);
$(this).fadeIn(500);
});
}, 2000);
});
</script>
<script>
var dbRef = new Firebase("https://sheild-55d2c.firebaseio.com/");
var contactsRef = dbRef.child('Registration');
$('.addValued').on("click", function( event ) {
event.preventDefault();
if( $('#usr2').val() != '' && $('#eml2').val() != '' && $('#reg2').val() != '' && $('#pho2').val() != '' && $('#sel2').val() != ''){
contactsRef.push({
name: $('#usr2').val(),
email: $('#eml2').val(),
reg: $('#reg2').val(),
phone: $('#pho2').val(),
event: $('#sel2').val(),
}
)
swal("Thanks For Registering", "We will get in touch soon "+ $('#usr2').val()+".\n\n SHEILD-VIT ", "success");
contactForm2.reset();
} else {
sweetAlert("Oops...", "Please fill all required field", "error");
}
});
</script>
</body>
</html>