31 lines
890 B
PHP
31 lines
890 B
PHP
<?php
|
|
|
|
function muoribene($msg,$close) {
|
|
global $link;
|
|
if ($close) mysqli_close($link);
|
|
echo('<!DOCTYPE HTML>
|
|
<html lang="it">
|
|
<head>
|
|
<title>Mastodon Startpage Admin - Errori</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="description" content="Mastodon Startpage Admin - Errori">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
<link rel="icon" type="image/png" href="imgs/icona-32.png" sizes="32x32">
|
|
<link rel="icon" type="image/png" href="imgs/icona-192.png" sizes="192x192">
|
|
<link rel="icon" type="image/png" href="imgs/icona-512.png" sizes="512x512">
|
|
<link rel="apple-touch-icon-precomposed" href="imgs/icona-180.png">
|
|
<link rel="stylesheet" type="text/css" href="theme.css">
|
|
</head>
|
|
<body>
|
|
<div id="fullscreen">
|
|
<div id="middlerow">
|
|
<p>'.$msg.'</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
');
|
|
exit(1);
|
|
}
|
|
|
|
?>
|