mirror of
https://github.com/Crocmagnon/checkout.git
synced 2025-04-27 03:45:31 +02:00
14 lines
496 B
HTML
14 lines
496 B
HTML
{% load i18n %}
|
|
<!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>{% 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>
|
|
</body>
|
|
</html>
|