diff options
| author | Bobby <[email protected]> | 2025-12-23 10:57:04 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-12-23 10:57:04 +0530 |
| commit | 3036abbc4af1e85e3f3d473c9facdeefb94916c7 (patch) | |
| tree | 149363c254b9a52b85854cb2d32eb95c8cefa542 /templates/error.django | |
| parent | ecce99fde86b01efffd1825688ee950f7e7f6b33 (diff) | |
| download | lain-3036abbc4af1e85e3f3d473c9facdeefb94916c7.tar.xz lain-3036abbc4af1e85e3f3d473c9facdeefb94916c7.zip | |
email templates, routes and utils
Diffstat (limited to 'templates/error.django')
| -rw-r--r-- | templates/error.django | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/error.django b/templates/error.django index f766688..d38b972 100644 --- a/templates/error.django +++ b/templates/error.django @@ -1,8 +1,10 @@ {% 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 class="error-page"> + <div class="error-container"> + <h1>{{ ErrorTitle }}</h1> + <p>{{ ErrorMessage }}</p> + <a href="{% url 'auth.login' %}">Go back home</a> + </div> </div> {% endblock %} |
