home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / sambar / _setup.1 / newgroup.stm < prev    next >
Text File  |  2001-02-18  |  2KB  |  60 lines

  1. <HTML>
  2. <HEAD>
  3. <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
  4. <META HTTP-EQUIV="Expires" CONTENT="-1">
  5. </HEAD>
  6. <BODY bgcolor=#ffffff>
  7. <CENTER><FONT SIZE=6>Create a New User Group</FONT></CENTER>
  8. <BR>
  9.  
  10. <SCRIPT language="JavaScript">
  11. <!--
  12.  
  13. var inValid = ":|/ ";
  14. function Form_Validator(theForm)
  15. {
  16.     if (theForm.groupname.value == "")
  17.     {
  18.         alert("Please enter a value for the \"Group Name\" field.");
  19.         theForm.groupname.focus();
  20.         return (false);
  21.     }
  22.  
  23.     for (j = 0; j < theForm.username.value.length; j++)
  24.     {
  25.         if (inValid.indexOf(theForm.groupname.value.charAt(j)) != -1)
  26.         {
  27.             alert("The \"groupname\" contains invalid characters (:| ).");
  28.             theForm.groupname.focus();
  29.             return (false);
  30.         }
  31.     }
  32. }
  33. //-->
  34. </SCRIPT>
  35. <BR>
  36. <FORM METHOD="POST" ACTION="/session/addgroup" onsubmit="return Form_Validator(this)">
  37. <INPUT TYPE="hidden" NAME="RCpage" VALUE="/sysadmin/usermgmt/newgroup.stm">
  38.  
  39. <TABLE border=0 cellpadding=5 cellspacing=2 width=550>
  40. <TR valign=top>
  41. <TD align=right><B>Group Name</B></TD>
  42. <TD><INPUT TYPE="text" NAME="groupname" VALUE="" SIZE=40 MAXLENGTH=40></TD>
  43. </TR>
  44. <TR>
  45. <TD></TD><TD><INPUT TYPE="submit" VALUE="Create New User Group"></TD>
  46. </TR>
  47. </TABLE>
  48. </FORM>
  49. </CENTER>
  50. <P>
  51. <HR>
  52. <P>
  53. Note: Once created, groups cannot be deleted through the user interface.
  54. To delete one or more unused groups, simply delete the <I>config/groups</I>
  55. file and it will be recreated the next time the server is started with
  56. only those groups found in the <I>config/passwd</I> file.
  57. <P>
  58. </BODY>
  59. </HTML>
  60.