diff options
| author | Bobby <[email protected]> | 2025-12-19 18:52:39 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-12-19 18:52:39 +0530 |
| commit | ed74f2cffa902a3e9aeb614f8dcf65f04658a597 (patch) | |
| tree | a86fe689686774b2915608a511ba57822b0b6521 /templates/error.django | |
| parent | a42fcbc8149f482d65a53ddcdc7bcfaaea359c69 (diff) | |
| download | lain-ed74f2cffa902a3e9aeb614f8dcf65f04658a597.tar.xz lain-ed74f2cffa902a3e9aeb614f8dcf65f04658a597.zip | |
error controllers, types and templates and layouts
Diffstat (limited to 'templates/error.django')
| -rw-r--r-- | templates/error.django | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/error.django b/templates/error.django new file mode 100644 index 0000000..f766688 --- /dev/null +++ b/templates/error.django @@ -0,0 +1,8 @@ +{% extends 'layouts/generic.django' %} +{% block content %} + <div class="error-container"> + <h1>{{ ErrorTitle }}</h1> + <p>{{ ErrorMessage }}</p> + <a href="{% url 'auth.login' %}">Go back home</a> + </div> +{% endblock %} |
