mirror of
https://github.com/Starlio-app/StarlioX
synced 2024-11-05 06:03:57 +03:00
added a 404 error
This commit is contained in:
parent
9949e5a87b
commit
43964abc1d
1 changed files with 37 additions and 0 deletions
37
interface/page/error/404.html
Normal file
37
interface/page/error/404.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>EveryNasa</title>
|
||||
<link rel="icon" href="/image/icons/favicon.png">
|
||||
</head>
|
||||
<style>
|
||||
* {
|
||||
line-height: 1.2;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
lottie-player {
|
||||
margin: 0 auto;
|
||||
width: 300px; height: 300px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-family: sans-serif;
|
||||
text-align: center;
|
||||
margin: 0.4% auto;
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #9FA4AF;
|
||||
}
|
||||
</style>
|
||||
<body style="background: #131313; color: white;">
|
||||
<lottie-player src="/static/image/lottie/lf20_2QSlz3Li88.json" background="transparent" speed="1" loop autoplay></lottie-player>
|
||||
<p style="font-size: 160%;">Page not found!</p>
|
||||
<p style="font-size: 115%;">Sorry, but the page you want to view may have been deleted or moved!</p>
|
||||
<p><a style="font-size: 1em;" href="/">General page</a></p>
|
||||
<script src="/static/scripts/vendors/lottie-player.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue