-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirm.html
104 lines (92 loc) · 3.41 KB
/
confirm.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
<!DOCTYPE HTML>
<html>
<head>
<title>Los Altos Hacks IV</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta property="og:title" content="Los Altos Hacks IV" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.losaltoshacks.com/" />
<meta property="og:description" content="A 24-hour high school hackathon. Coming early 2019." />
<meta property="og:image" content="https://www.losaltoshacks.com/images/social-media.jpg" />
<meta name="twitter:title" content="Los Altos Hacks IV">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@losaltoshacks">
<meta name="twitter:description" content="A 24-hour high school hackathon. Coming early 2019.">
<meta name="twitter:image" content="http://www.losaltoshacks.com/images/social-media.jpg">
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="apple-touch-icon" href="touch-icon.png">
<link href="css/fonts.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<style>
#logo-main > img {
cursor:pointer;
}
#logo-main > img:hover {
transform: translateY(-10px);
}
</style>
</head>
<body>
<main>
<!-- Top -->
<section id="top" style="background-image: unset">
<div id="top-canvas">
<div id="overlay"></div>
<video autoplay muted loop id="bg-video">
<source src="images/video.mp4" type="video/mp4">
</video>
</div>
<div class="row" id="logo-main">
<img src="images/Los-Altos-Hacks-Logo.svg">
<h4 style="max-width:60%;margin:0 auto;">Successfully confirmed your email! Keep checking your email to get updates regarding the status of your application.</h4>
</div>
<div class="row" id="top-text">
<div id="info-left">
<h4 class="dateline">March 23 - 24, 2019</h4>
<h4>Juniper Aspiration Dome</h4>
<p class="mt-0 text-muted">1081 Innovation Way, Sunnyvale, CA</p>
</div>
</div>
</section>
</main>
<footer>
<div class="row">
<div class="row-inner">
<div class="footer-wrapper row">
<div class="footer-sect">
<div class="footer-icon">
<img src="images/Los-Altos-Hacks-Logo-Flat.svg" id="footer-brand">
</div>
</div>
<div class="footer-sect">
<div class="link-group-head">Past Sites</div>
<a href="2016" class="link-group-item">2016</a>
<a href="2017" class="link-group-item">2017</a>
<a href="2018" class="link-group-item">2018</a>
</div>
<div class="footer-sect">
<div class="link-group-head">Social Media</div>
<a href="https://www.facebook.com/losaltoshacks" class="link-group-item">Facebook</a>
<a href="https://twitter.com/losaltoshacks" class="link-group-item">Twitter</a>
<a href="https://instagram.com/losaltoshacks" class="link-group-item">Instagram</a>
</div>
<div class="footer-sect">
<div class="link-group-head"> </div>
</div>
</div>
</div>
<p class="text-tiny" id="copyText">Copyright © 2018 Los Altos Hacks. All rights reserved.</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('#logo-main > img').click(function() {
window.location.href = "/";
})
})
</script>
</body>
</html>