-
Notifications
You must be signed in to change notification settings - Fork 0
/
resumes.html
168 lines (152 loc) · 6.69 KB
/
resumes.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Kat">
<title>CUSEC 2015</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="icon" type="image/png" href="img/favicon.png">
<!-- Add custom CSS here -->
<link href="css/cusec.css" rel="stylesheet">
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!--Fonts-->
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Arvo' rel='stylesheet' type='text/css'>
</head>
<body>
<a id="menu-toggle" href="#" class="btn btn-primary btn-lg toggle"><i class="fa fa-bars"></i></a>
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<a id="menu-close" href="#" class="btn btn-default btn-lg pull-right toggle"><i class="fa fa-times"></i></a>
<li class="sidebar-brand">CUSEC 2015</a></li>
<li><a href="index.html#top">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="schedule.html#schedule">Schedule</a></li>
<li><a href="speakers.html">Speakers</a></li>
<li><a href="democamp.html">Democamp</a></li>
<li><a href="#">Resume Upload</a></li>
<li><a href="talks.html">Lightning Talks</a></li>
<li><a href="index.html#schools">Schools</a></li>
<li><a href="index.html#sponsors">Sponsors</a></li>
<li><a href="team.html#team">Team</a></li>
<li><a href="faq.html#faq">Frequently Asked Questions</a></li>
<li><a href="faq.html#coc">Code of Conduct</a></li>
</ul>
</div>
<div class="democamp">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 text-center">
<h2>Resume Upload</h2>
<hr>
</div>
</div>
<div class="col-md-6 col-md-offset-3 text-center">
<p>Good luck to everyone who submitted their resume! Resume upload is now closed. </p><br>
<p>Submit your resume to our Career Fair sponsors prior to CUSEC or during the conference.</p>
<h3>Think your resume shines? Want some good feedback?</h3>
<p>By checking off Resume Roast in the options below you will be submitting your resume for roasting.</p>
</br>
<p>The Roast is a lunch time event in which a few selected resumes will get <strong><i>harshly critiqued</i></strong> in front of an audience by industry experts and recruiters.</p>
<p>Resumes will be accepted until Friday, January 16, 2015 at midnight.</p><br>
</div>
<!--
<div class="col-md-6 col-md-offset-3 text-center">
<div id="wufoo-z1f25wbm05x9ho7">
Fill out my <a href="https://cusecresumes.wufoo.com/forms/z1f25wbm05x9ho7">online form</a>.
</div>
</div>
-->
</div>
</div>
<!-- Footer -->
<footer class="navbar-fixed-bottom">
<!--
// Leaf Flat Social Media Icons Set //
Release date: 06/09/2013
License: (by-sa-nd) Free for commercial use (link to author, no derivative works)
Original source: http://www.webhostingsecretrevealed.net/discount-freebies/free-icons/leaf/
-->
<div class="container">
<div class="row">
<div class="col-md-12" style="text-align:center">
<a class="btn-social" href="http://www.facebook.com/pages/CUSEC/9884406702">
<img src="img/icons/facebook.png"></img>
</a>
<a class="btn-social" href="http://www.twitter.com/cusec">
<img src="img/icons/twitter.png"></img>
</a>
<a class="btn-social" href="http://plus.google.com/106331744933691516421" rel="publisher">
<img src="img/icons/googleplus.png"></img>
</a>
<a class="btn-social" href="http://www.vimeo.com/cusec/">
<img src="img/icons/vimeo.png"></img>
</a>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-12" style="text-align:center">
<a href="mailto:info@cusec.net?Subject=CUSEC2015">
Contact Us
</a>
</div>
</div>
</div>
</footer>
<!-- /Footer -->
<!-- JavaScript -->
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.js"></script>
<!-- Custom JavaScript for the Side Menu and Smooth Scrolling -->
<script>
$("#menu-close").click(function(e) {
e.preventDefault();
$("#sidebar-wrapper").toggleClass("active");
});
</script>
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#sidebar-wrapper").toggleClass("active");
});
</script>
<script>
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
<script type="text/javascript">
var z1f25wbm05x9ho7;(function(d, t) {
var s = d.createElement(t), options = {
'userName':'cusecresumes',
'formHash':'z1f25wbm05x9ho7',
'autoResize':true,
'height':'623',
'async':true,
'host':'wufoo.com',
'header':'show',
'ssl':true};
s.src = ('https:' == d.location.protocol ? 'https://' : 'http://') + 'www.wufoo.com/scripts/embed/form.js';
s.onload = s.onreadystatechange = function() {
var rs = this.readyState; if (rs) if (rs != 'complete') if (rs != 'loaded') return;
try { z1f25wbm05x9ho7 = new WufooForm();z1f25wbm05x9ho7.initialize(options);z1f25wbm05x9ho7.display(); } catch (e) {}};
var scr = d.getElementsByTagName(t)[0], par = scr.parentNode; par.insertBefore(s, scr);
})(document, 'script');
</script>
</body>
</html>