View file index.php

File size: 1.94Kb
<?php
// coding by Felis

session_start();
require_once 'sys/core.php';
require_once 'sys/fnc.php';
require_once 'templates/header.php';

echo '<div class="head">Переводчик "'.$desc.'"</div>
<div class="cont">
<b>Р</b>усско-<b>А</b>лбанский переводчик<br/>
<i>'.$motto.'</i><br/>
<i>Версия <b>'.$version.'</b></i><br/>
[!<a href="faq.php">FAQ по сервису</a>]<br/>';

if(file_exists('chmod.php')) {
echo '<i>
<font color="#aa5500">
Удалите файл <a href="chmod.php">chmod.php</a>
</font>
</i>';
}

echo '</div>
<div class="head">Падонификатор</div>
<div class="cont">
<form action="translate.php?show=site" method="post">
Адрес сайта:<br/>
<input class="special" type="text" name="msg" value="http://"/><br/>
<input type="submit" value="Выполнить" style="border: 1px solid #999999;"/>
</form>
</div>
<div class="head">Перевести текст</div>
<div class="cont">';

if(isset($_GET['success']))
{ echo '<i><small><span class="alert">Перевод был успешно отправлен =)</span></small></i><br/>'; }

echo '<form action="translate.php?show=text" method="post">
Имя автора:<br/>
<input class="special" type="text" maxlength="22" name="name" style="width: 200px;"/><br/>
Текст на русском:<br/>
<textarea class="special" rows="5" cols="15" style="width: 277px; height: 155px;" name="msg"></textarea><br/>
<input type="submit" value="Перевести" style="border: 1px solid #999999;"/>
</form>
</div>
<div class="head">Администрирование</div>
<div class="cont">';

if($_SESSION['passwd'] == $passwd) {
echo '<a href="admin.php">Управление</a> | <a href="admin.php?do=exit">Выход</a>';
}
else {
echo '<a href="login.php">Войти</a>';
}
echo '<br/>
<a href="view.php">Статистика</a><br/>
</div>';

require_once 'templates/footer.php';
?>