-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arvind-4
committed
Sep 29, 2023
1 parent
d625baf
commit b586aa5
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{% extends 'base.html' %} | ||
{% load static %} | ||
|
||
{% block title %} Ideas | Error {% endblock %} | ||
|
||
{% block content %} | ||
|
||
<div class="d-flex align-items-center justify-content-center vh-100"> | ||
<div class="text-center"> | ||
<h1 class="display-1 fw-bold text-light">404</h1> | ||
<p class="fs-3"> <span class="text-danger">Opps!</span><span class="text-light"> | ||
Page not found. | ||
</span></span></p> | ||
<p class="lead text-light"> | ||
The page you're looking for doesn't exist. | ||
</p> | ||
<a href="/" class="btn btn-primary">Go Home</a> | ||
</div> | ||
</div> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{% extends 'base.html' %} | ||
{% load static %} | ||
|
||
{% block title %} Ideas | Error {% endblock %} | ||
|
||
{% block content %} | ||
|
||
<div class="d-flex align-items-center justify-content-center vh-100"> | ||
<div class="text-center"> | ||
<h1 class="display-1 fw-bold text-light">500</h1> | ||
<p class="fs-3"> <span class="text-danger">Opps!</span><span class="text-light"> | ||
Problem with the server. | ||
</span></span></p> | ||
<p class="lead text-light"> | ||
We are working on it. | ||
</p> | ||
<a href="/" class="btn btn-primary"> | ||
Return to Home | ||
</a> | ||
</div> | ||
</div> | ||
|
||
{% endblock %} |