Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

404 Page #108

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions ACMAS/app/ACMAS_Web/templates/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{% extends '_base.html' %}
{% load component_tags %}

{% block title %}Not Found{% endblock %}

{% block content %}
<div class="p-0 flex items-center overflow-hidden relative" style="height: 85vh;">
<div class="absolute w-full h-full" style="background: linear-gradient(-45deg, #f8f8f3, #f5f2d6, #dbebf3, #c6d6f7); background-size: 300% 300%; animation: gradient 65s ease infinite;"> </div>
<div class="container px-4 mx-auto z-3 relative lg:w-6/12">
<div class="flex flex-col items-center justify-items-center">
<div class="flex gap-x-6">
<div class="self-end">
<a class="text-9xl font-bold text-gray-700" style="font-family: Inter, serif;">404</a>
</div>
<div class="self-start">
<a class="text-6xl font-semibold text-gray-500" style="font-family: Inter, serif;">We couldn't find <br> this page</a>
</div>
</div>
<span class="mt-8" onclick="window.location.href='/';">
{% component "button" text="Back to Home" component_type="primary" value="" %}
</span>
</div>
</div>
</div>
{% endblock content %}