Index: branches/htmlform/templates/admin/deluser.tmpl
===================================================================
--- branches/htmlform/templates/admin/deluser.tmpl	(revision 484)
+++ branches/htmlform/templates/admin/deluser.tmpl	(revision 484)
@@ -0,0 +1,3 @@
+Deleting user <TMPL_VAR NAME=username>...
+<TMPL_IF errmsg><br>Error deleting user: <TMPL_VAR NAME=errmsg><TMPL_ELSE>OK</TMPL_IF>
+<hr><a href="admin.cgi?action=showusers">Back</a> to user listing
Index: branches/htmlform/templates/admin/newuser.tmpl
===================================================================
--- branches/htmlform/templates/admin/newuser.tmpl	(revision 484)
+++ branches/htmlform/templates/admin/newuser.tmpl	(revision 484)
@@ -0,0 +1,3 @@
+Adding user <TMPL_VAR NAME=username>...
+<TMPL_IF errmsg><br>Error adding user: <TMPL_VAR NAME=errmsg><TMPL_ELSE>OK</TMPL_IF>
+<hr><a href="admin.cgi?action=showusers">Back</a> to user listing
Index: branches/htmlform/templates/admin/showpools.tmpl
===================================================================
--- branches/htmlform/templates/admin/showpools.tmpl	(revision 484)
+++ branches/htmlform/templates/admin/showpools.tmpl	(revision 484)
@@ -0,0 +1,7 @@
+IP Pools currently allocated:
+<table border=1>
+<tr><td>Pool</td><td># of free IPs</td></tr>
+<TMPL_LOOP NAME=poollist>
+<tr><td><a href="admin.cgi?action=tweakpool&amp;pool=<TMPL_VAR NAME=pool>"><TMPL_VAR NAME=pool></a></td><td><TMPL_VAR NAME=free></td></tr>
+</TMPL_LOOP>
+</table>
Index: branches/htmlform/templates/admin/showusers.tmpl
===================================================================
--- branches/htmlform/templates/admin/showusers.tmpl	(revision 484)
+++ branches/htmlform/templates/admin/showusers.tmpl	(revision 484)
@@ -0,0 +1,43 @@
+Notes:
+<ul>
+<li>Admin users automatically get all other priviledges.
+<li>Everyone has basic read access.
+</ul>
+<hr>Add new user:<form action="admin.cgi" method="POST">
+<fieldset><legend></legend>
+Username: <input name=username><br>
+Password: <input name=password> <input type=checkbox name=preenc>Password is pre-encrypted (MUST be crypt() encrypted)<br>
+<input type=submit value='Add user'><input type=hidden name=action value=newuser>
+</fieldset></form>
+
+<hr>Users with access:
+
+<table border="1">
+<tr><td></td><td align="center" colspan="3">General access</td></tr>
+<tr><td>Username</td><td>Add new</td><td>Change</td><td>Delete</td><td>Systems/Networking</td><td>Admin user</td></tr>
+
+<TMPL_LOOP name=userlist>
+<tr>
+<form action="admin.cgi" method="POST">
+<fieldset><legend></legend>
+<input type="hidden" name="action" value="updacl">
+<td><TMPL_VAR NAME=username><input type="hidden" name="username" value="<TMPL_VAR NAME=username>"></td>
+<td><input type=checkbox name="add"<TMPL_IF can_add> checked="checked"</TMPL_IF>></td>
+<td><input type=checkbox name="change"<TMPL_IF can_change> checked="checked"</TMPL_IF>></td>
+<td><input type=checkbox name="del"<TMPL_IF can_del> checked="checked"</TMPL_IF>></td>
+<td><input type=checkbox name="sysnet"<TMPL_IF sysnet> checked="checked"</TMPL_IF>></td>
+<td><input type=checkbox name="admin"<TMPL_IF is_admin> checked="checked"</TMPL_IF>></td>
+<td><input type=submit value="Update"></td>
+</fieldset></form> 
+<td>
+<form action="admin.cgi" method="POST">
+<fieldset><legend></legend>
+<input type=hidden name=action value=deluser>
+<input type=hidden name=username value="<TMPL_VAR NAME=username>">
+<input type=submit value="Delete user">
+</fieldset></form> 
+</td>
+<td><TMPL_VAR NAME=acl></td>
+</tr>
+</TMPL_LOOP>
+</table>
Index: branches/htmlform/templates/admin/touch.tmpl
===================================================================
--- branches/htmlform/templates/admin/touch.tmpl	(revision 484)
+++ branches/htmlform/templates/admin/touch.tmpl	(revision 484)
@@ -0,0 +1,5 @@
+Touching master <TMPL_VAR NAME=master>...<br>
+<TMPL_IF errmsg><p>Error updating modified timestamp on master <TMPL_VAR NAME=master>: <TMPL_VAR NAME=errmsg></p>
+<TMPL_ELSE>OK!
+</TMPL_IF>
+
Index: branches/htmlform/templates/admin/updacl.tmpl
===================================================================
--- branches/htmlform/templates/admin/updacl.tmpl	(revision 484)
+++ branches/htmlform/templates/admin/updacl.tmpl	(revision 484)
@@ -0,0 +1,4 @@
+Updating ACL for <TMPL_VAR NAME=username>:<br>
+New ACL: <TMPL_VAR NAME=acl><br>
+<TMPL_UNLESS errmsg>OK!<TMPL_ELSE><TMPL_VAR NAME=errmsg></TMPL_UNLESS>
+<hr><a href="admin.cgi?action=showusers">Back</a> to user listing
