This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-12 18:34:05 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Burgernotes</title>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<link rel="stylesheet" type="text/css" href="../static/css/style.css" />
|
2024-03-12 18:49:14 +00:00
|
|
|
<script>
|
|
|
|
if (origin !== "null") {
|
|
|
|
// Get the current URL
|
|
|
|
var currentUrl = window.location.href;
|
|
|
|
|
|
|
|
// Remove '/index.html' from the current URL
|
|
|
|
var newUrl = currentUrl.replace('/index.html', '');
|
|
|
|
|
|
|
|
// Redirect to the new URL
|
|
|
|
window.location.href = newUrl;
|
|
|
|
}
|
|
|
|
</script>
|
2024-03-12 18:34:05 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h2 class="w300">{{ errorMessage }}</h2>
|
|
|
|
{{ errorCode }} | {{ errorMessage }}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
</html>
|