netzbeere-web/error404.lp

27 lines
1.0 KiB
Plaintext

<? --[[
* Pi-hole: A black hole for Internet advertisements
* (c) 2023 Pi-hole, LLC (https://pi-hole.net)
* Network-wide ad blocking via your own hardware.
*
* This file is copyright under the latest version of the EUPL.
* Please see LICENSE file for your rights under this license.
--]]
mg.include('scripts/lua/header.lp','r')
?>
<body class="hold-transition layout-boxed login-page page-<?=pihole.format_path(mg.request_info.request_uri)?>">
<div class="box login-box">
<section style="padding: 15px;">
<h2 class="error-headline text-yellow">404</h2>
<div class="error-content">
<h3><i class="fa fa-warning text-yellow"></i> <?= i18n('error.page_not_found_title') ?></h3>
<p>
<?= i18n('error.page_not_found_message') ?><br>
<?= i18ns('error.return_to_dashboard', pihole.webhome() .. '?lang=' .. lang) ?>
</p>
</div>
</section>
</div>
</body>
</html>