wrong mode in index.php now gives a 404 error (#15); anti cross-site-request token
This commit is contained in:
parent
186d770741
commit
ab0ac45415
4 changed files with 48 additions and 1 deletions
29
tpl/404.tpl
Normal file
29
tpl/404.tpl
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>404 - ZapMachine</title>
|
||||
<link rel="stylesheet" media="screen" href="css/style.css">
|
||||
<style>
|
||||
.error-404 {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 50vw;
|
||||
height: 50vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-family: Georgia, serif;
|
||||
font-size: clamp(2rem, 8vw, 6rem);
|
||||
color: #555;
|
||||
border: 0px;
|
||||
background: #fafafa;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="error-404">error 404</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue