Просмотр файла panel/login.php

Размер файла: 1.04Kb
<?php 
// by mides, 1xw.mobi

require('../config.php');
require('../system/sys.php');
require('../system/start.php');
require('../system/header.php');

echo '<div class="top">Админка</div>';

if(empty($user['user_login'])){
	echo '<div class="section">';
	echo '<u>Авторизация</u><br />';
	echo '<form action="a.php" method="post" name="form">';
	echo 'Логин:<br /><input name="login" type="text" maxlength="20" size="12" /><br />';
	echo 'Пароль:<br /><input name="password" type="password" maxlength="20" size="12" /><br />';
	echo '<input name="submit" type="submit" value="Войти" /></form><br />';
	echo 'Вы можете сделать автологин вида:<br />';
	echo '<font color="red">http://адрес_сайта/папка_с_зц/panel/a.php?l=логин&p=пароль</font>';
	echo '</div>';
	nav('../');
}else{
	info('Вы уже авторизованы!');
	nav('index.php');
	echo '<meta http-equiv="refresh" content="0;URL=index.php" />';
}

require('../system/tail.php');
?>