mirror of
https://github.com/Crocmagnon/checkout.git
synced 2024-11-22 16:18:03 +01:00
Add error pages
This commit is contained in:
parent
31077516ae
commit
4cd55984aa
2 changed files with 18 additions and 0 deletions
5
src/common/templates/404.html
Normal file
5
src/common/templates/404.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
{% extends "common/base.html" %}
|
||||
{% block content %}
|
||||
<h1>Page not found</h1>
|
||||
<p>We tried and tried but couldn't find the page you're looking for.</p>
|
||||
{% endblock %}
|
13
src/common/templates/500.html
Normal file
13
src/common/templates/500.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Checkout - Server error</title>
|
||||
<style>html { font-family: sans-serif; }</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Server error (500)</h1>
|
||||
<p>There's an error on our end. Don't worry, our engineers are already working on it!</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue