Skip to content

Commit

Permalink
add back 404
Browse files Browse the repository at this point in the history
  • Loading branch information
thedannywahl authored May 17, 2024
1 parent 06efed5 commit 03dea2d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="inst.bid">
<meta name="apple-mobile-web-app-title" content="inst.bid">
<meta name="theme-color" content="#287A9F">
<meta name="msapplication-navbutton-color" content="#287A9F">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="msapplication-starturl" content="/">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Instructure product compliance information" />

<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

<title>Redirecting...</title>
<script>
const prefix = '/#'
const protocol = window.location.protocol + '//'
const host = window.location.hostname
const path = window.location.pathname
const redirectURL = protocol + host + prefix + path
window.location.href = redirectURL
</script>
</head>

<body>
<noscript>You need to enable JavaScript to run this app. To request compliance information directly ask your
Customer Success Manager, or email <a href="mailto:[email protected]">[email protected]</a></noscript>
<div id="root"></div>
</body>

</html>

0 comments on commit 03dea2d

Please sign in to comment.