-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (100 loc) · 5.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="title" content="SurreyCodes Foundation">
<meta name="description" content="Learn to code with an active community surrounding you ( Blockchain, AR/VR, Front End, Back End ) Whatever Tech you are into.">
<meta name="abstract" content="Learn to code with an active community surrounding you ( Blockchain, AR/VR, Front End, Back End ) Whatever Tech you are into.">
<meta name="author" content="www.surreycodes.com">
<meta name="publisher" content="www.surreycodes.com">
<meta name="copyright" content="www.surreycodes.com">
<meta name="revisit-after" content="2 days">
<link rel="shortcut icon" href="assets/img/favicon.ico">
<title>SurreyCodes Foundation | Tech learning community in British Columbia</title>
<!-- Bootstrap -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/font-awesome.css" rel="stylesheet">
<link href="assets/css/bootstrap-theme.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/animations.css">
<!-- siimple style -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="cloud floating">
<img src="assets/img/cloud.png" alt="Learn React Development">
</div>
<div class="cloud pos1 fliped floating">
<img src="assets/img/cloud.png" alt="Donate to a tech non profit">
</div>
<div class="cloud pos2 floating">
<img src="assets/img/cloud.png" alt="Scoop Themes">
</div>
<div class="cloud pos3 fliped floating">
<img src="assets/img/cloud.png" alt="Scoop Themes">
</div>
<div id="wrapper">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<img src="assets/img/SurreyCodes.svg" alt="SurreyCodes Foundation Logo" style="max-height: 100px; max-width: 100px;">
<br/>
<br/>
<h2 class="subtitle">We're creating the first tech learning non-profit in Surrey, British Columbia</h2>
<br/>
<form action="https://surreycodes.us15.list-manage.com/subscribe/post?u=e68e8322c02b87c92bb398e16&id=7feaa75c0a" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address as: [email protected]" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_e68e8322c02b87c92bb398e16_7feaa75c0a" tabindex="-1" value=""></div>
<input type="submit" value="Get Notified!" name="subscribe" id="mc-embedded-subscribe" class="button-email">
</div>
</form>
<br/>
</div>
<div class="col-sm-12 align-center">
<ul class="social-network social-circle">
<li><a href="https://www.facebook.com/surreycodes/" target="_blank" class="icoFacebook" title="Facebook"><i class="fa fa-facebook"></i></a>
</li>
<li><a href="https://twitter.com/surreycodes" target="_blank" class="icoTwitter" title="Twitter"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="https://github.com/SurreyCodes" target="_blank" class="icoGit" title="Github"><i class="fa fa-github"></i></a>
</li>
<li><a href="https://ca.linkedin.com/company/surreycodes" target="_blank" class="icoLinkedin" title="Linkedin"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
<footer>
<p class="copyright">Copyright © 2018 - <a href="http://surreycodes.com">SurreyCodes Foundation</a>
</p>
</footer>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(document).ready( function () {
$('#wrapper').height($(document).height());
// I only have one form on the page but you can be more specific if need be.
var $form = $('form');
if ( $form.length > 0 ) {
$('form input[type="submit"]').bind('click', function ( event ) {
if ( event ) event.preventDefault();
// validate_input() is a validation function I wrote, you'll have to substitute this with your own.
if ( $form.validate() ) { register($form); }
});
}
});
function appendResult(userText , className, iconClass){
var resultHTML = "<div class='stretchLeft result "+ className + "'>" + userText + " <span class='fa fa-" + iconClass + "'></span>" + "</div>";
$('body').append(resultHTML);
$('.result').delay(1000).fadeOut('100');
}
</script>s
</body>
</html>