60 lines
1.9 KiB
PHP
60 lines
1.9 KiB
PHP
<?php
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
require_once(dirname(__FILE__) . "/includes/funcLib.php");
|
|
require_once(dirname(__FILE__) . "/includes/MySmarty.class.php");
|
|
$smarty = new MySmarty();
|
|
$opt = $smarty->opt();
|
|
|
|
if (isset($_GET["action"])) {
|
|
if ($_GET["action"] == "logout") {
|
|
session_start();
|
|
session_destroy();
|
|
}
|
|
}
|
|
|
|
if (!empty($_POST["username"])) {
|
|
$username = $_POST["username"];
|
|
$password = $_POST["password"];
|
|
|
|
try {
|
|
$stmt = $smarty->dbh()->prepare("SELECT userid, fullname, admin, show_helptext FROM {$opt["table_prefix"]}users WHERE username = ? AND password = {$opt["password_hasher"]}(?) AND approved = 1");
|
|
$stmt->bindParam(1, $username, PDO::PARAM_STR);
|
|
$stmt->bindParam(2, $password, PDO::PARAM_STR);
|
|
|
|
$stmt->execute();
|
|
if ($row = $stmt->fetch()) {
|
|
session_start();
|
|
$_SESSION["userid"] = $row["userid"];
|
|
$_SESSION["fullname"] = $row["fullname"];
|
|
$_SESSION["admin"] = $row["admin"];
|
|
$_SESSION["show_helptext"] = $row["show_helptext"];
|
|
$opt['show_helptext'] = $row["show_helptext"];
|
|
|
|
header("Location: " . getFullPath("index.php"));
|
|
exit;
|
|
}
|
|
}
|
|
catch (PDOException $e) {
|
|
die("sql exception: " . $e->getMessage());
|
|
}
|
|
|
|
$smarty->assign('username', $username);
|
|
$smarty->display('login.tpl');
|
|
}
|
|
else {
|
|
$smarty->display('login.tpl');
|
|
}
|
|
?>
|