Templates, Bootstrap Navbars, and Links

This commit is contained in:
2024-10-10 11:28:02 +02:00
parent ee8922e728
commit c19c6e650b
7 changed files with 104 additions and 40 deletions

View File

@ -79,15 +79,17 @@
</style>
</head>
<body>
<div class="container">
<h1>500</h1>
<h2>Internal Server Error</h2>
<img src="https://via.placeholder.com/300x300?text=Error" alt="Error Image" class="error-image">
<p>Something went wrong on our end. We're working on fixing it!</p>
<p>Please try again later, or reload the page.</p>
<a href="javascript:location.reload()" class="reload-link">Reload Page</a>
</div>
{% extends "base.html" %}
{% block content %}
<div class="container">
<h1>500</h1>
<h2>Internal Server Error</h2>
<img src="https://via.placeholder.com/300x300?text=Error" alt="Error Image" class="error-image">
<p>Something went wrong on our end. We're working on fixing it!</p>
<p>Please try again later, or reload the page.</p>
<a href="javascript:location.reload()" class="reload-link">Reload Page</a>
</div>
{% endblock %}0
</body>
</html>