mirror of
https://github.com/Starlio-app/StarlioX
synced 2024-11-05 06:03:57 +03:00
added an error page if you access the site via phone
This commit is contained in:
parent
06fba69099
commit
b1a53ac034
1 changed files with 43 additions and 0 deletions
43
web/src/errors/mobile.html
Normal file
43
web/src/errors/mobile.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>EveryNas</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="icon" href="/image/icons/favicon.png">
|
||||
<style>
|
||||
lottie-player {
|
||||
margin: 2% auto;
|
||||
height: 200px;
|
||||
width: 200px;
|
||||
}
|
||||
p {
|
||||
font-family: sans-serif;
|
||||
text-align: center; font-size: 130%;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #9FA4AF;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #a596bd;
|
||||
}
|
||||
|
||||
#title {
|
||||
text-align: center;
|
||||
font-size: 200%;
|
||||
margin: 0.4% auto;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body style="background-color: #131313; color: white;">
|
||||
<lottie-player src="https://assets9.lottiefiles.com/packages/lf20_tl52xzvn.json" background="transparent" speed="0.8" autoplay></lottie-player>
|
||||
<h1 id="title">Access denied</h1>
|
||||
<p>You don't have access to this site on this device!</p>
|
||||
<p>The site is only available for computers</p>
|
||||
<p>The mobile version of EveryNasa is available on the <a href="https://play.google.com/store/apps/details?id=ru.murzify.everynasa">Play Market</a></p>
|
||||
<script src="/static/scripts/lottie-player.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue