-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
69 lines (64 loc) · 2.38 KB
/
dashboard.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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>HackNJIT</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/foundation.min.css">
<link rel="stylesheet" href="css/style.min.css">
</head>
<body>
<header>
<div class="row">
<div class="columns">
<h2>Hack</h2>
<h1><img src="img/njit-logo.png" alt="NJIT"></h1>
</div>
</div>
<div class="row" id="info">
<h3>November 5th-6th, 2016</h3>
<h3>Newark, NJ @ NJIT</h3>
</div>
<div>
<noscript>Warning: This page requires javscript to function. Please enable it in your browser in order to use this page.</noscript>
<h3 id="headerOne">Thank you for signing up for our event! </h3>
<h3 id="headerTwo">Please provide a link to your resume below in order to update your resume and verify your attendence!</h3>
<input id="resumeBox" type="text" style="color:black">
<br>
<br>
<a href="#" onclick="verify()" id="verifyButton">
<button type="button" class="button alert">Verify Attendence</button>
</a>
<a id="homeButton" style="display:none" href="http://hacknjit.org">
<button type="button" class="button alert">Return to Main Site</button>
</a>
</div>
</header>
<footer>
<div class="row">
<div class="columns">
<p>HackNJIT is hosted by</p>
</div>
<div class="columns">
<div class="row">
<div class="columns">
<div class="host" id="host-acm">
<a href="http://njit.acm.org/" target="_blank">
<img src="img/acm-logo.png">
</a>
</div>
<div class="host" id="host-ccs">
<a href="http://ccs.njit.edu/" target="_blank">
<img src="img/ccs-logo.png">
</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<a id="mlh-trust-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000" href="https://mlh.io/seasons/na-2017/events?utm_source=na-2017&utm_medium=TrustBadge&utm_campaign=na-2017&utm_content=white" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2017/white.svg" alt="Major League Hacking 2017 Hackathon Season" style="width:100%"></a>
<script type="text/javascript" src="js/verify.js"></script>
</body>
</html>