boothifier/data/www/failed.html

33 lines
796 B
HTML

<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Update Failed</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/css/nav.css" rel="stylesheet">
<style>
body {
background-color: #f7f7f7;
}
#spacer-50 {
height: 50px;
}
</style>
</head>
<body>
<div id="navbar"></div>
<center>
<h2>The update has failed.</h2>
<div id="spacer-50"></div>
<button onclick="window.location.href='/files';">to homepage</button>
</center>
<script>
fetch('/www/navbar.html')
.then(response => response.text())
.then(data => {
document.getElementById('navbar').innerHTML = data;
});
</script>
</body>
</html>