checkout/src/common/templates/500.html

15 lines
496 B
HTML
Raw Normal View History

2022-04-25 23:04:49 +02:00
{% load i18n %}
2022-04-25 17:35:13 +02:00
<!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>
2022-04-25 23:04:49 +02:00
<h1>{% translate "Server error (500)" %}</h1>
<p>{% translate "There's an error on our end. Don't worry though, our engineers are already working to fix it!" %}</p>
2022-04-25 17:35:13 +02:00
</body>
</html>