IP Reg is a IPAM tool to keep track of assets, nodes (IP addresses, MAC addresses, DNS aliases) within different subnets, over different locations or even VLAN's. Written in PHP, used with a MySQL-database to have a unique insight in your local network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ipreg/tpl/userclassauthaddsubitem.tpl

63 lines
1.2 KiB

<form method="POST" action="submit.php">
<input type="hidden" name="add" value="userclassauth">
<input type="hidden" name="userclass_id" value="{userclass_id}">
<input type="hidden" name="authitem" value="{authitem}">
<table border="0" width="100%">
<tr>
<td>
<b>{lang_userclassauth_add}:</b>
</td>
<td align="right">
<input type="image" src="images/next.gif" title="{lang_submit}">
</td>
</tr>
</table>
<p>
<table border="0">
<tr>
<td>
{lang_userclass_name}:
</td>
<td>
{userclass_name}
</td>
</tr>
[BLOCK table AS item]
<tr>
<td>
{lang_item}:
</td>
<td>
{authitem_name}
</td>
</tr>
[END table]
[BLOCK table AS items]
<tr>
<td>
{lang_subitem}:
</td>
<td>
<select name="item_id">
<option value="0">--- {lang_all} ---</option>
[BLOCK itemrow]
<option value="{item_id}">{item_name}</option>
[END itemrow]
</select>
</td>
</tr>
[END table]
<tr>
<td>
{lang_userclassauth}:
</td>
<td>
<input type="text" name="auth" size="2">
</td>
</tr>
</table>
</form>