Skip to content
Snippets Groups Projects
Commit 0e23b48d authored by grollicus's avatar grollicus
Browse files

Merge branch 'feature/#66-fehlerseiten' into 'develop'

Feature/#66 fehlerseiten

See merge request rc3/hub!228
parents eff70b0f 1438cd66
Branches
Tags
No related merge requests found
<!DOCTYPE html>
<html>
<head>
<title>403 - Forbidden</title>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: rgba(0,0,0,1);
}
article {
margin: 0;
padding: 4rem;
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
}
img {
display: block;
width: 100%;
height: auto;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<article>
<a href="https://rc3.world" class="row my-8">
<img class="" src="403_FORBIDDEN.jpg" alt="403 - Forbidden" title="403 - Forbidden" />
</a>
</article>
</body>
</html>
src/plainui/static/error_pages/403_FORBIDDEN.jpg

1.12 MiB

<!DOCTYPE html>
<html>
<head>
<title>404 - OOOOOPS (not found)</title>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: rgba(0,0,0,1);
}
article {
margin: 0;
padding: 4rem;
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
}
img {
display: block;
width: 100%;
height: auto;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<article>
<a href="https://rc3.world" class="row my-8">
<img class="" src="404_NOT_FOUND.jpg" alt="404 Error" title="404 Error" />
</a>
</article>
</body>
</html>
src/plainui/static/error_pages/404_NOT_FOUND.jpg

1.13 MiB

<!DOCTYPE html>
<html>
<head>
<title>500 - Internal Server Error</title>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: rgba(0,0,0,1);
}
article {
margin: 0;
padding: 4rem;
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
}
img {
display: block;
width: 100%;
height: auto;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<article>
<a href="https://rc3.world" class="row my-8">
<img class="" src="500_INTERNAL_SERVER_ERROR.jpg" alt="500 - internal Server error" title="500 - internal Server error" />
</a>
</article>
</body>
</html>
src/plainui/static/error_pages/500_INTERNAL_SERVER_ERROR.jpg

1.17 MiB

{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>403 - Forbidden</title>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: rgba(0,0,0,1);
}
article {
margin: 0;
padding: 4rem;
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
}
img {
display: block;
width: 100%;
height: auto;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<article>
<a href="https://rc3.world" class="row my-8">
<img class="" src="{% static "error_pages/403_FORBIDDEN.jpg" %}" alt="403 - Forbidden" title="403 - Forbidden" />
</a>
</article>
</body>
</html>
{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>404 - OOOOOPS (not found)</title>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: rgba(0,0,0,1);
}
article {
margin: 0;
padding: 4rem;
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
}
img {
display: block;
width: 100%;
height: auto;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<article>
<a href="https://rc3.world" class="row my-8">
<img class="" src="{% static "error_pages/404_NOT_FOUND.jpg" %}" alt="404 Error" title="404 Error" />
</a>
</article>
</body>
</html>
{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>500 - Internal Server Error</title>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: rgba(0,0,0,1);
}
article {
margin: 0;
padding: 4rem;
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
}
img {
display: block;
width: 100%;
height: auto;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<article>
<a href="https://rc3.world" class="row my-8">
<img class="" src="{% static "error_pages/500_INTERNAL_SERVER_ERROR.jpg" %}" alt="500 - internal Server error" title="500 - internal Server error" />
</a>
</article>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment