Add error pages

This commit is contained in:
Gabriel Augendre 2022-04-25 17:35:13 +02:00
parent 31077516ae
commit 4cd55984aa
2 changed files with 18 additions and 0 deletions

View 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 %}

View 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>