[feladat @ 113]
Password field in users.php is now set to type 'password' instead of 'text'. When typing password '*' are shown instead of the password.
<?php
/* PowerAdmin, a friendly web-based admin tool for PowerDNS.
* See <https://rejo.zenger.nl/poweradmin> for more details.
*
* Copyright 2007, 2008 Rejo Zenger <rejo@zenger.nl>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
require_once("inc/toolkit.inc.php");
$xsid = (isset($_GET['id'])) ? $_GET['id'] : $_POST['zoneid'];
if ((!level(5)) && ((!xs($xsid) || ($_SESSION[$xsid.'_ispartial'])))) {
error(ERR_RECORD_ACCESS_DENIED);
}
if ($_POST["commit"]) {
$ret = add_record($_POST["zoneid"], $_POST["name"], $_POST["type"], $_POST["content"], $_POST["ttl"], $_POST["prio"]);
if ($ret != '1') {
die("$ret");
}
clean_page("edit.php?id=".$_POST["zoneid"]);
}
include_once("inc/header.inc.php");
?>
<h2><? echo _('Add record to zone'); ?> "<? echo get_domain_name_from_id($_GET["id"]) ?>"</H2>
<form method="post">
<input type="hidden" name="zoneid" value="<? echo $_GET["id"] ?>">
<table border="0" cellspacing="4">
<tr>
<td class="n"><? echo _('Name'); ?></td>
<td class="n"> </td>
<td class="n"><? echo _('Type'); ?></td>
<td class="n"><? echo _('Priority'); ?></td>
<td class="n"><? echo _('Content'); ?></td>
<td class="n"><? echo _('TTL'); ?></td>
</tr>
<tr>
<td class="n"><input type="text" name="name" class="input">.<? echo get_domain_name_from_id($_GET["id"]) ?></td>
<td class="n">IN</td>
<td class="n">
<select name="type">
<?
$dname = get_domain_name_from_id($_GET["id"]);
foreach (get_record_types() as $c) {
if (eregi('in-addr.arpa', $dname) && strtoupper($c) == 'PTR') {
$add = " SELECTED";
} elseif (strtoupper($c) == 'A') {
$add = " SELECTED";
} else {
unset($add);
}
?><option<? echo $add ?> value="<? echo $c ?>"><? echo $c ?></option><?
}
?>
</select>
</td>
<td class="n"><input type="text" name="prio" class="sinput"></td>
<td class="n"><input type="text" name="content" class="input"></td>
<td class="n"><input type="text" name="ttl" class="sinput" value="<? echo $DEFAULT_TTL?>"></td>
</tr>
</table>
<br>
<input type="submit" name="commit" value="<? echo _('Add record'); ?>" class="button">
</form>
<? include_once("inc/footer.inc.php"); ?>