Файл: style/themes/default/head.php
Строк: 59
<?
$set['web'] = false;
//header("Content-type: application/vnd.wap.xhtml+xml");
//header("Content-type: application/xhtml+xml");
header("Content-type: text/html");
echo '<?xml version="1.0" encoding="utf-8"?>';
?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru">
<head>
<title>
<?=$set['title']?>
</title>
<link rel="shortcut icon" href="/style/themes/<?=$set['set_them']?>/favicon.ico" />
<link rel="stylesheet" href="/style/themes/<?=$set['set_them']?>/style.css" type="text/css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script>
<script type="text/javascript">
setTimeout(function(){$('.fast').fadeOut('fast')},1000); //30000 = 30 секунд
</script>
<script type="text/javascript">
$(document).ready(function() {
$("body").css("display", "none");
$("body").fadeIn(300);
$("a.transition").click(function(event){
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(300, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
</script>
</head>
<body>
<?
if (!isset($user)){
echo '<table style="text-align: center; position: fixed; z-index: 2; top: 0; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3); max-width: 550px; min-width: 1px;" cellspacing="0" cellpadding="0">';
echo '<td class="auts"><a style="color:white;" href="/aut.php">Авторизация</a></td>';
echo '<td class="auts"><a style="color:white;" href="/">Lafes</a></td>';
echo '<td class="auts"><a style="color:white;" href="/reg.php">Регистрация</a></td>';
echo '</table>';
echo '<div style="background: #f3f3f3; padding: 42px 3px 1px 3px;">';
}
?>