mirror of
https://github.com/transatoshi-mw/grin-web-wallet.git
synced 2025-10-06 15:52:47 +00:00
24 lines
596 B
HTML
Executable File
24 lines
596 B
HTML
Executable File
<?php
|
|
|
|
// Included files
|
|
require_once __DIR__ . "/../backend/common.php";
|
|
require_once __DIR__ . "/../backend/language.php";
|
|
|
|
|
|
// Main function
|
|
|
|
// Set error header
|
|
header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found");
|
|
header("Status: 404 Not Found");
|
|
|
|
// Set title, title argument, error, error argument, and message
|
|
$title = getDefaultTranslation('MWC Wallet — Error %1$s');
|
|
$titleArgument = 404;
|
|
$error = getDefaultTranslation('Error %1$s');
|
|
$errorArgument = 404;
|
|
$message = getDefaultTranslation('Not Found');
|
|
|
|
// Require template
|
|
require __DIR__ . "/template.php";
|
|
?>
|