-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchess.html
566 lines (523 loc) · 28.7 KB
/
chess.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
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chess@Shaurya2K17</title>
<meta name="description" content="Chess" />
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="../favicon.ico">
<script type='text/javascript' src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/she/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/she/demo.css" />
<link rel="stylesheet" type="text/css" href="css/she/component.css" />
<script src="js/she/snap.svg-min.js"></script>
<script src="js/events/modernizr.custom.js"></script>
<!--Additional CSS files -->
<link rel="stylesheet" href="css/hover/style.css">
<link rel="stylesheet" href="css/social/style.css">
<!-- //Additional CSS files -->
<script src="js/bootstrap.min.js"></script>
<link href="css/bootstrap.css" type="text/css" rel="stylesheet" media="all">
<link href="css/style.css" type="text/css" rel="stylesheet" media="all">
<!--<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<!-- Custom Theme files -->
<!-- js -->
<script src="js/jquery-1.11.1.min.js"></script>
<!-- //js -->
<!-- start-smoth-scrolling-->
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
<!--//end-smoth-scrolling-->
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/contact/materialize.css" media="screen,projection" />
<style type="text/css">
/* BackToTop button css */
#scroll {
position:fixed;
right:10px;
bottom:80px;
cursor:pointer;
width:50px;
height:50px;
background-color:#3498db;
text-indent:-9999px;
display:none;
-webkit-border-radius:60px;
-moz-border-radius:60px;
border-radius:60px;
z-index: 99;
}
#scroll span {
position:absolute;
top:50%;
left:50%;
margin-left:-8px;
margin-top:-12px;
height:0;
width:0;
border:8px solid transparent;
border-bottom-color:#ffffff;
}
#scroll:hover {
background-color:#e74c3c;
opacity:1;filter:"alpha(opacity=100)";
-ms-filter:"alpha(opacity=100)";}
#back:hover
{
color: white;
}
#back a
{
color: white;
}
div#load_screen{
background: #fff;
opacity: 1;
position: fixed;
z-index:9999;
top: 0px;
width: 100%;
height: 1600px;
}
div#load_screen > div#loading{
color:#FFF;
width:120px;
height:24px;
margin: 300px auto;
}
/* Bounce In */
.hvr-bounce-in {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
-webkit-transform: scale(1.2);
transform: scale(1.2);
-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
/* Grow Shadow */
.hvr-grow-shadow {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: box-shadow, transform;
transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.grid a:nth-child(odd) {
margin: 30px 200px -30px 0;
}
</style>
<script>
window.addEventListener("load", function(){
var load_screen = document.getElementById("load_screen");
document.body.removeChild(load_screen);
});
</script>
</head>
<body>
<div id="load_screen"><div id="loading"><img src="images/preloader.gif" /></div></div>
<a href="#" id="scroll" title="Scroll to Top" style="display: none;">Top<span></span></a>
<!-- Social Icons -->
<ul id="social_side_links">
<li><a class="hvr-grow-shadow" style="background-color: #3c5a96;" href="https://www.facebook.com/shauryotsavaiet/
" target="_blank"><img src="https://dl.dropboxusercontent.com/u/78039576/CodePen/facebook-icon.png" alt="" /></a></li>
<li><a class="hvr-grow-shadow" style="background-color: #1dadeb;" href="http://twitter.com" target="_blank"><img src="https://dl.dropboxusercontent.com/u/78039576/CodePen/twitter-icon.png" alt="" /></a></li>
<li><a class="hvr-grow-shadow" style="background-color: #1178b3;" href="http://linkedin.com" target="_blank"><img src="https://dl.dropboxusercontent.com/u/78039576/CodePen/linkedin-icon.png" alt="" /></a></li>
</ul>
<!--//Social Icons-->
<!--Register -->
<div id="social_side_links_banner" id="register">
<a href="" data-toggle="modal" data-target="#myModal"><img class="hvr-bounce-in" src="images/register.png" width="200" /></a>
</div>
<!--//Register-->
<!--ticker-wrap-->
<div class="ticker-wrap">
<div class="ticker">
<div class="ticker__item">Registration for the events are now open!!</div>
<div class="ticker__item">IET Lucknow Shauryotsava 2k17</div>
<div class="ticker__item">Registration for the events are now open!! </div>
<div class="ticker__item">IET Lucknow Shauryotsava 2k17</div>
</div>
</div>
<!--//ticker-wrap-->
<!--navigation-->
<!--navigation-->
<!-- Dropdown Structure -->
<ul id="dropdown1" class="dropdown-content">
<li><a href="football.html">Football</a></li>
<li><a href="track.html">Track</a></li>
<li><a href="volleyball.html">VolleyBall</a></li>
<li><a href="field.html">Field</a></li>
<li><a href="badminton.html">Badminton</a></li>
<li><a href="lawntennis.html">Lawn-Tennis</a></li>
<li><a href="tabletennis.html">Table Tennis</a></li>
<li><a href="cricket.html">Cricket</a></li>
<li><a href="carrom.html">Carrom</a></li>
<li><a href="chess.html">Chess</a></li>
<li><a href="khokho.html">Kho-Kho</a></li>
<li><a href="kabaddi.html">Kabaddi</a></li>
<li><a href="taekwondo.html">Taekwondo</a></li>
<li><a href="basketball.html">Basketball</a></li>
</ul>
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper">
<a href="index.html" class="brand-logo center" style="font-family: 'RacingSansOne-Regular'; font-size: 2.2em;text-shadow: 2px 2px 4px #000000">Shauryotsava</a>
<a href="index.html" data-activates="mobile-demo" class="button-collapse"><i class="material-icons" style="text-shadow: 2px 2px 4px #000000">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="events.html" style="text-shadow: 2px 2px 4px #000000">Events</a></li>
<!-- Dropdown Trigger -->
<li><a class="dropdown-button" href="#!" data-activates="dropdown1"><i class="material-icons right" style="text-shadow: 2px 2px 4px #000000">arrow_drop_down</i></a></li>
<li><a href="team.html" style="text-shadow: 2px 2px 4px #000000">Organising Team</a></li>
<li><a href="contact.html" style="text-shadow: 2px 2px 4px #000000">Contact Us</a></li>
</ul>
</div>
</nav>
</div>
<ul class="side-nav" id="mobile-demo">
<li><a href="index.html" class="waves-effect waves-teal">Home</a></li>
<li><a href="events.html">Events</a></li>
<li class="no-padding">
<ul class="collapsible collapsible-accordion" >
<li class="bold"><a class="collapsible-header waves-effect waves-teal">Events Description</a>
<div class="collapsible-body">
<ul>
<li><a href="football.html">Football</a></li>
<li><a href="track.html">Track</a></li>
<li><a href="volleyball.html">VolleyBall</a></li>
<li><a href="field.html">Field</a></li>
<li><a href="badminton.html">Badminton</a></li>
<li><a href="lawntennis.html">Lawn-Tennis</a></li>
<li><a href="tabletennis.html">Table Tennis</a></li>
<li><a href="cricket.html">Cricket</a></li>
<li><a href="carrom.html">Carrom</a></li>
<li><a href="chess.html">Chess</a></li>
<li><a href="khokho.html">Kho-Kho</a></li>
<li><a href="kabaddi.html">Kabaddi</a></li>
<li><a href="taekwondo.html">Taekwondo</a></li>
<li><a href="basketball.html">Basketball</a></li>
</ul>
</div>
</li>
</ul>
<li><a href="team.html" class="waves-effect waves-teal">Organising Team</a></li>
<li><a href="contact.html" class="waves-effect waves-teal">Contact Us</a></li>
</li>
</ul>
<!--<div class="top-nav">
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"> <span class="jlogo">Shaury</span>otsava </a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!--<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-center cl-effect-15">
<li><a href="index.html" data-hover="Home">Home</a></li>
<li><a href="index.html" data-hover="About">About</a></li>
<li><a href="events.html" data-hover="Events">Events</a></li>
<li><a href="team.html" class="active" data-hover="Team">Team</a></li>
<li><a href="#gallery" data-hover="Gallery">Gallery</a></li>
<li><a href="#news" data-hover="News">News</a></li>
<li><a href="#contact" data-hover="Contact">Contact</a></li>
</ul>
<div class="clearfix"> </div>
</div>
</div>
</nav>
</div>
<!-- script-for sticky-nav -->
<script>
$(document).ready(function() {
$(".button-collapse").sideNav();
$(".dropdown-button").dropdown({ hover: true });
});
</script>
<!-- /script-for sticky-nav -->
<!--navigation-->
<div class="container">
<h3 class="title">Chess</h3>
<p style="font-size: 1.2em;">Chess is a two-player strategy board game played on a chessboard, a checkered gameboard with 64 squares arranged in an eight-by-eight grid. Chess is played by millions of people worldwide, both amateurs and professionals.
Each player begins the game with 16 pieces: one king, one queen, two rooks, two knights, two bishops, and eight pawns. Each of the six piece types moves differently, with the most powerful being the queen and the least powerful the pawn. The objective is to 'checkmate' the opponent's king by placing it under an inescapable threat of capture. To this end, a player's pieces are used to attack and capture the opponent's pieces, while supporting their own. In addition to checkmate, the game can be won by voluntary resignation by the opponent, which typically occurs when too much material is lost, or if checkmate appears unavoidable. A game may also result in a draw in several ways.</p>
<h3 class="title">Rules</h3>
<ol style="font-size: 1.2em;">
<li>The movement of pieces is to be done with one hand. Once the hand is taken off a piece after moving it, the move cannot be retracted unless the move is illegal. When castling, the player should first move the king with one hand and then move the rook with the same hand.</li>
<li>In serious play, if a player having the move touches a piece as if having the intention of moving it, then the player must move it if it can be legally moved. So long as the hand has not left the piece on a new square, any legal move can be made with the piece. If a player touches one of the opponent's pieces then that piece must be captured if there is a legal move that does so. If none of the touched pieces can be moved or captured there is no penalty.</li>
<li>Tournament games are played under time constraints, called time controls, using a chess clock. Players must make their moves within the time control or forfeit the game. There are different types of time controls. In some cases each player will have a certain amount of time to make a certain number of moves. In other cases each player will have a limited amount of time to make all of their moves.</li>
<li>All players must use their feet head or chest to play the ball. Only the goalkeeper is allowed to use their hands, and only within their designated goal area.</li>
<li>Each square of the chessboard is identified with a unique pair of a letter and a number. The vertical files are labeled a through h, from White's left (i.e. the queenside) to White's right. </li>
<li>A player who makes an illegal move must retract that move and make a legal move. That move must be made with the same piece if possible, because the touch-move rule applies. If the illegal move was an attempt to castle, the touch-move rule applies to the king but not to the rook.</li>
<li>If it is discovered during the game that the starting position was incorrect, the game is restarted. If it is discovered during the game that the board is oriented incorrectly, the game is continued with the pieces transferred to a correctly oriented board.</li>
</ol>
</div>
<!--team-->
<div class="container">
<h3 class="title">Co-Ordinators</h3>
<section id="grid" class="grid clearfix pull-two">
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/1.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Crystalline</h2>
<p>Soko radicchio bunya nuts gram dulse.</p>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/3.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Cacophony</h2>
<p>Two greens tigernut soybean radish.</p>
</figcaption>
</figure>
</a>
</section>
</div>
<script>
(function() {
function init() {
var speed = 250,
easing = mina.easeinout;
[].slice.call ( document.querySelectorAll( '#grid > a' ) ).forEach( function( el ) {
var s = Snap( el.querySelector( 'svg' ) ), path = s.select( 'path' ),
pathConfig = {
from : path.attr( 'd' ),
to : el.getAttribute( 'data-path-hover' )
};
el.addEventListener( 'mouseenter', function() {
path.animate( { 'path' : pathConfig.to }, speed, easing );
} );
el.addEventListener( 'mouseleave', function() {
path.animate( { 'path' : pathConfig.from }, speed, easing );
} );
} );
}
init();
})();
</script>
<!--//team-->
<div class="container" style="padding-bottom: 20px; text-align: center;">
<a href="events.html" ><button class="waves-effect waves-light btn" id="back">Back to Events
</button></a>
</div>
<!--footer-->
<div class="footer" style="padding-bottom: 80px">
<div class="container">
<p> © 2017 Shauryotsava . All rights reserved | Designed by <a href="https://www.linkedin.com/in/vishal-polley-8b067697" target="_blank">Vishal Polley</a> , <a href="https://www.linkedin.com/in/raghvendra-sharma-722504113" target="_blank">Raghvendra Sharma</a> and <a href="https://www.linkedin.com/in/shubhranshu-maurya-731b20120" target="_blank">Shubhranshu Maurya</a></p>
</div>
</div>
<!--//footer-->
<!--about-->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog ">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" style="font-size:32px;">×</button>
<h3 class="modal-title heading-color" style="text-align:center;color:#a94442"> REGISTRATION FORM </h3>
</div>
<div class="modal-body">
<form class="form-horizontal" role="form" method ="post" action = "database.php" >
<div class="col-md-7 no-padding" style="margin-top:20px;">
<div class="form-group">
<!--List for Male-->
<div class="col-sm-6">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title text-center" style="color:#a94442;">
<a data-toggle="collapse" href="#collapse1" class="" style="color:#a94442;">
<i class="fa fa-male"></i> Events for Male Teams </a>
</h4>
</div>
<div id="collapse1" class="panel-collapse collapse in" style="background-color:#ffe2de">
<div class="panel-body expanded-panel">
<div class="col-sm-6">
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-cricket"><span style="color: black;">Cricket</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-football"><span style="color: black;">Football</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-volleyball"><span style="color: black;">VolleyBall</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-kho-kho"><span style="color: black;">Kho Kho</span></label>
</div>
</div>
<div class="col-sm-6">
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-table-tennis"><span style="color: black;">Table Tennis</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-athletics"><span style="color: black;">Athletics</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-badminton"><span style="color: black;">Badminton</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-chess"><span style="color: black;">Chess</span></label>
</div>
</div>
</div>
</div>
</div>
</div>
<!--List for Female-->
<div class="col-sm-6">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title text-center" style="color:#a94442;">
<a data-toggle="collapse" href="#collapse2" class="" style="color:#a94442;">
<i class="fa fa-female"></i> Events for Female Teams </a>
</h4>
</div>
<div id="collapse2" class="panel-collapse collapse in" style="background-color: #cff0ff;">
<div class="panel-body expanded-panel">
<div class="col-sm-6">
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-athletics"><span style="color: black;">Athletics</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-badminton"><span style="color: black;">Badminton</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-chess"><span style="color: black;">Chess</span></label>
</div>
</div>
<div class="col-sm-6">
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-kho-kho"><span style="color: black;">Kho Kho</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-table-tennis"><span style="color: black;">Table Tennis</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-volleyball"><span style="color: black;">Volleyball</span></label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 no-padding" style="margin-top:20px;">
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="name" style="color: black;">Name:</label>
<input type="text" class="form-control" id="name" name = "name" placeholder="Enter Your Name" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="designation" style="color: black;">Designation: </label></br>
<input type="radio" name="designation" value="Student" checked> Student<br>
<input type="radio" name="designation" value="College Coordinator"> College Coordinator<br>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="college" style="color: black;">College:</label>
<input type="text" class="form-control" id="college" name = "college" placeholder="Enter Your College Name" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="city" style="color: black;">City:</label>
<input type="text" class="form-control" id="city" name = "city" placeholder="Enter City of Your College" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="email" style="color: black;">Email:</label>
<input type="email" class="form-control" id="email" name = "email" placeholder="Enter Your Email" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="mobile" style="color: black;">Mobile:</label>
<input type="text" class="form-control" id="mobile" name = "mobile" placeholder="Enter Your Mobile No." required>
</div>
</div>
<div class="col-sm-12">
<div class="form-group "><hr>
<button type="submit" name = "submit" class="btn btn-default btn-success btn-block"> Register</button>
</div>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
<script type='text/javascript'>
$(document).ready(function(){
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('#scroll').fadeIn();
} else {
$('#scroll').fadeOut();
}
});
$('#scroll').click(function(){
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
</script>
<!-- //Modal Content -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/events/grid.js"></script>
<script>
$(function() {
Grid.init();
});
</script>
<script src="js/bootstrap.js"></script>
<!--Import materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.js"></script>
</body>
</html>