-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
51 lines (47 loc) · 1.78 KB
/
404.html
File metadata and controls
51 lines (47 loc) · 1.78 KB
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
---
layout: container
title: Page Not Found
permalink: /404.html
---
<div id="loading" class="container push-top" style="display: none;">
<div class="col-xs-12 push-bottom">
<h1 class="text-lowercase page-header">Please wait</h1>
<h2 class="tagline push-bottom">You are being redirected...</h2>
</div>
</div>
<div id="oops" class="container push-top" style="display: none;">
<div class="col-xs-12">
<h1 class="text-lowercase page-header">Oops</h1>
<h2 class="tagline push-bottom">We're sorry. This page doesn't seem to exist.</h2>
</div>
<div class="col-sm-6">
<a class="full-width btn btn-primary" href="/search" data-automation-id="404-search-button">Search Crossroads.net</a>
<p class="push-top">
<strong>Still need help?</strong>
<br />Browse our
<a href="/help">help section</a>,
<a href='mailto:websupport@%63ros%73ro%61ds%2Enet'>email
us</a> or give us a call at 513‑731‑7400.
</p>
</div>
<div class="col-sm-6 mobile-push-top">
<img class="img-responsive imgix-fluid full-width" title="404 Page Not Found Crossroads Coffee Cup" src="//crds-media.imgix.net/5w9XSbsrcsi95lNX7bBOGH/882cd2a9d5158fd51eaa26500220541f/coffee-cup-rebrand.png?auto=compress,format"
alt="Page not found!">
</div>
</div>
<script>
(function(){
const params = new Proxy(new URLSearchParams(window.location.search), {
get: (searchParams, prop) => searchParams.get(prop),
});
let redirectUrl = params.redirectUrl;
if (redirectUrl) {
$('#loading').show();
setTimeout(function(){
window.location.replace('https://www.crossroads.net/signin/?redirectUrl=' + redirectUrl);
}, 2000)
} else {
$('#oops').show();
}
})()
</script>