From 4cd55984aa4120f42088a0bcd08378fc9470b12c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 25 Apr 2022 17:35:13 +0200 Subject: [PATCH] Add error pages --- src/common/templates/404.html | 5 +++++ src/common/templates/500.html | 13 +++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 src/common/templates/404.html create mode 100644 src/common/templates/500.html diff --git a/src/common/templates/404.html b/src/common/templates/404.html new file mode 100644 index 0000000..1112d54 --- /dev/null +++ b/src/common/templates/404.html @@ -0,0 +1,5 @@ +{% extends "common/base.html" %} +{% block content %} +

Page not found

+

We tried and tried but couldn't find the page you're looking for.

+{% endblock %} diff --git a/src/common/templates/500.html b/src/common/templates/500.html new file mode 100644 index 0000000..d308d98 --- /dev/null +++ b/src/common/templates/500.html @@ -0,0 +1,13 @@ + + + + + + Checkout - Server error + + + +

Server error (500)

+

There's an error on our end. Don't worry, our engineers are already working on it!

+ +