<?php
// ----------------------------------------------------------------------
// Copyright (C) 2007 by GREGORY LE BRAS
// ----------------------------------------------------------------------
// LICENSE
//
// This file is part of ODCNMS - Open DataCenter Network Management System
//
// ODCNMS 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.
//
// Foobar 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 Foobar; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
// ----------------------------------------------------------------------
// Original Author of file: GREGORY LE BRAS - http://www.odcnms.org/
// ----------------------------------------------------------------------
?>
<?php
if (!isset($add))
{
?>
<form method="post" action="index.php?include=administration&page=user&action=add&add=ok" name="add_user">
<fieldset class="form">
<legend><img src="images/add.gif" alt="Add" align="top"> <?php echo TXT_ADD; ?> <?php echo TXT_USER; ?></legend>
<label><?php echo TXT_USERNAME; ?></label>
<input type="text" name="username" size="50"><br>
<label><?php echo TXT_STATUS; ?></label>
<select name="administrator">
<option value="0" selected><?php echo TXT_SIMPLE_USER; ?></option>
<option value="1"><?php echo TXT_ADMINISTRATOR; ?></option>
<option value="2"><?php echo TXT_SUPER." ".TXT_ADMINISTRATOR; ?></option>
</select><br><br>
<input type="submit" name="submit" value="<?php echo TXT_ADD; ?>"> <input type="button" value="<?php echo TXT_BACK; ?>" onClick="javascript:history.go(-1);">
</fieldset>
</form>
<script language="JavaScript" type="text/javascript">
var frmvalidator = new Validator("add_user");
frmvalidator.addValidation("username","req","Please enter the name of the user");
frmvalidator.addValidation("username","maxlen=255",
"Max length for Name is 255");
</script>
<?php
}
else if ($add=="ok")
{
if ($radius_authentication=="0")
{
$md5password = md5($username);
$query=mysql_query("INSERT INTO $name_table_users VALUES ('',\"$username\",\"$md5password\",\"$administrator\")") or die ("ERROR!");
}
else
{
$query=mysql_query("INSERT INTO $name_table_users VALUES ('',\"$username\",'',\"$administrator\")") or die ("ERROR!");
}
if(!$query)
{
echo "<center><div id=\"status\" style=\"color:red\"><img src=\"images/warning.png\" alt=\"WARNING\"><br><br>";
echo TXT_DATABASE_ERROR;
echo "</div><br><a href=\"javascript:history.go(-2);\">";
echo TXT_BACK;
echo "</a></center>";
}
else
{
echo "<center><div id=\"status\" style=\"color:green\"><img src=\"images/info.png\" alt=\"INFO\"><br><br>";
echo TXT_SUCCESSFULLY_ADD_USER;
echo "</div><br><div id=\"status\" style=\"color:blue\"><img src=\"images/question.gif\" alt=\"INFO\"><br><br>";
echo TXT_WHAT_DO_YOU_WANT_TO_DO;
echo "<form name=\"option_after\"><select name=\"select\" onchange=\"goto(this.form);\" class=\"form\"><option value=\"\">-------";
echo TXT_CHOOSE_SELECTION;
echo "-------</option><option value=\"index.php?include=administration&page=user&action=add\">";
echo TXT_ADD_ANOTHER_USER;
echo "</option></select></form></div><br><br><a href=\"javascript:history.go(-2);\">";
echo TXT_BACK;
echo "</a></center>";
}
}
?>