20241004#1

This commit is contained in:
User
2024-10-04 03:00:11 +03:00
parent 99f78f7362
commit 1b0af12a46
37 changed files with 57 additions and 59 deletions

38
templates/error/404.tpl Normal file
View File

@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 Page Not Found</title>
<style>
body{
font-family: Arial, sans-serif;
font-size: 15px;
margin: 0;
padding: 0;
background: #c9d1e1;
}
.err-page{
display: flex;
align-items: center;
height: 50vh;
flex-direction: column;
justify-content: center;
color:#888;
}
.err-page__header{
font-size: 70px;
}
.err-page__text{
font-size: 30px;
}
</style>
</head>
<body>
<div class="err-page">
<div class="err-page__header">404</div>
<div class="err-page__text">Page Not Found</div>
</div>
</body>
</html>