<?php
#Network Traffic Monitor is an application to monitor the network traffic on all SNMP managable devices.
#
#Copyright (c) 2004, Daimler Trust nv <hide@address.com> - Jan Van Hees <hide@address.com>
#
#This file is part of Network Traffic Monitor.
#
# Network Traffic Monitor 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.
#
# Network Traffic Monitor 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 Network Traffic Monitor; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# user authentication
require_once ("../config.php");
require_once "HTML/Template/IT.php";
#open template
$tpl = new HTML_Template_IT(".");
$tpl->loadTemplatefile("./templates/login.html", true, true);
session_start();
$tpl->setVariable("ERRORMSG", "");
if ($_POST["login"]){
#someones tries to login
# check username/password
$sql = "SELECT tid,uid FROM users WHERE users.username = '$_POST[login]' AND users.passwd = '$_POST[pass]'";
$db = dbLogin();
$row = $db->getRow($sql);
if($row[1]){
// login correct
$_SESSION[uid] = $row[1];
//if login correct, redirect to home.php
header("Location: home.php");
exit;
} else {
// login incorrect
$tpl->setVariable("ERRORMSG", "Login Incorrect");
}
}
$tpl->show();
?>