Файл: spuff.ru/other/login.php
Строк: 18
<?php
$title = 'Авторизация';
require_once '../includes/sys.php';
require_once '../includes/header.php';
if (isset($u['id'])) {
redirect(HTTPHOME);
} else {
tp('Авторизация');
echo '<div class="row">';
note();
echo '<form name="form" action="../a.php" method="post">
<b>Логин:</b><br /><input type="text" name="username" maxlength="12" size="12"/><br/>
<b>Пароль:</b><br /> <input type="password" name="password" maxlength="15" size="12"/><br />
<input type="submit" value="Вход"></form></div>';
}
require_once '../includes/tail.php';
?>