Merge pull request #395 from ahmadhusein17/patch-2

Update 404.tpl
This commit is contained in:
iBNu Maksum 2025-02-05 09:38:41 +07:00 committed by GitHub
commit e4124bd210
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,10 +1,47 @@
{include file="customer/header-public.tpl"}
<div class="hidden-xs" style="height:100px"></div>
<style>
.err-container {
text-align: center;
padding: 50px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.m404 {
font-size: 100px;
color: #ff6b6b;
}
.text-desc {
font-size: 20px;
color: #333333;
margin: 20px 0;
}
.error-btn {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
color: #ffffff;
background-color: #007bff;
border-radius: 5px;
text-decoration: none;
}
.error-btn:hover {
background-color: #0056b3;
}
</style>
<div class="page page-err clearfix">
<div class="err-container">
<h1 class="m404 mb0">404 <a href="{$_url}home" class="ion ion-forward" title="Go to Dashboard"></a></h1>
<p class="text-desc mb20">{Lang::T('Coming Soon! Next Version...')}</p>
<p class="text-desc mb20">{Lang::T("Oops! The page you are looking for was not found")}.</p>
<a href="{$_url}home" class="btn btn-primary error-btn">{Lang::T("Back to dashboard")}</a>
</div>
</div>
{include file="customer/footer-public.tpl"}
{include file="customer/footer-public.tpl"}