chore: add custom error pages (403, 404, 50x) in public/errors
This commit is contained in:
8
public/errors/403.html
Normal file
8
public/errors/403.html
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<!-- 404.html -->
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de">
|
||||||
|
<head><title>403 – Zugriff verweigert</title></head>
|
||||||
|
<body>
|
||||||
|
<h1>Fehlende Berechtigung.</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
8
public/errors/404.html
Normal file
8
public/errors/404.html
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<!-- 404.html -->
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de">
|
||||||
|
<head><title>404 – Seite nicht gefunden</title></head>
|
||||||
|
<body>
|
||||||
|
<h1>Diese Seite existiert nicht.</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
8
public/errors/50x.html
Normal file
8
public/errors/50x.html
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<!-- 404.html -->
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de">
|
||||||
|
<head><title>Serverfehler</title></head>
|
||||||
|
<body>
|
||||||
|
<h1>Der Server funktioniert nicht.</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user