home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 January / PCWorld_2001-01_cd.bin / Software / Topware / sambar / _SETUP.1 / newuser.stm < prev    next >
Text File  |  2000-10-02  |  3KB  |  116 lines

  1. <HTML>
  2. <HEAD>
  3. <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
  4. </HEAD>
  5. <BODY bgcolor=#ffffff>
  6. <CENTER><FONT SIZE=6>Create a New User</FONT></CENTER>
  7. <BR>
  8. <SCRIPT language="JavaScript">
  9. <!--
  10.  
  11. var strValid = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
  12.  
  13. function Form_Validator(theForm)
  14. {
  15.     var alertstr = "Please correct the following\n";
  16.  
  17.     if (theForm.username.value == "")
  18.     {
  19.         alert(alertstr + "Enter a value for the \"Username\" field.");
  20.         theForm.username.focus();
  21.         return (false);
  22.     }
  23.  
  24.     for (j = 0; j < theForm.username.value.length; j++)
  25.     {
  26.         if (strValid.indexOf(theForm.username.value.charAt(j)) == -1)
  27.         {
  28.             alert(alertstr + "The \"Username\" contains invalid characters.");
  29.             theForm.username.focus();
  30.             return (false);
  31.         }
  32.     }
  33. }
  34. //-->
  35. </SCRIPT>
  36. <BR>
  37. <FORM METHOD="POST" ACTION="/session/adduser" TARGET="_top" onsubmit="return Form_Validator(this)">
  38. <INPUT TYPE="hidden" NAME="RCpage" VALUE="/sysadmin/usermgmt/users.htm">
  39.  
  40. <TABLE border=0 cellpadding=5 cellspacing=2 width=550>
  41. <TR valign=top>
  42. <TD align=right><B>Username</B></TD>
  43. <TD><INPUT TYPE="text" NAME="username" VALUE="" SIZE=40 MAXLENGTH=40>
  44. <BR>
  45. <I>The Account name can only have alpha-numeric characters.</I>
  46. <RCif RCEntauth = true>
  47. <BR>
  48. <B>NT Domain authentication is enabled.</B>  User accounts configured
  49. with this interface will only be used for configuring mailboxes;
  50. the password and group entries will be ignored by the system.
  51. <RCendif>
  52. </TD>
  53. </TR>
  54. <TR VALIGN=top>
  55. <TD align=right><B>Password</B></TD>
  56. <TD><INPUT TYPE="password" NAME="password" VALUE="" SIZE=40 MAXLENGTH=40></TD>
  57. </TR>
  58. <TR VALIGN=top>
  59. <TD align=right><B>Group</B></TD>
  60. <TD>
  61. <SELECT NAME="group">
  62. <RCXselectgroup>
  63. </SELECT>
  64. </TR>
  65. <TR VALIGN=top>
  66. <TD align=right><B>Account Name</B></TD>
  67. <TD><INPUT TYPE="text" NAME="name" VALUE="" SIZE=40 MAXLENGTH=40></TD>
  68. </TR>
  69. <TR VALIGN=top>
  70. <TD align=right><B>Root Directory</B></TD>
  71. <TD>
  72. <INPUT TYPE="text" NAME="dir" VALUE="<RCEdocsdir>" SIZE=40 MAXLENGTH=40><BR>
  73. <I>Relative to '<RCErootdir>' unless a drive is give (i.e. d:/wwwroot).
  74. To allow FTP access to <B>all</B> drives and directories on the machine,
  75. set the Root Directory to the single star (*) character.</I>
  76. <BR>
  77. Note: The <B>Document Manager</B> makes use of this directive to restrict
  78. user access.  If the path specified is outside the document directory, the
  79. Document Manager will disallow uploads by this user.
  80. </TD>
  81. </TR>
  82. <TR VALIGN=top>
  83. <TD align=right><B>Access</B></TD>
  84. <TD>
  85. <INPUT TYPE="radio" NAME="ftpprivs" VALUE="0" CHECKED> None<BR>
  86. <INPUT TYPE="radio" NAME="ftpprivs" VALUE="1"> Read Only<BR>
  87. <INPUT TYPE="radio" NAME="ftpprivs" VALUE="2"> Read/Write<BR>
  88. </TD>
  89. </TR>
  90. <TR VALIGN=top>
  91. <TD align=right><B>FTP Maximum Upload</B></TD>
  92. <TD>
  93. <INPUT TYPE="text" NAME="ftpmax" VALUE="0"><BR>
  94. The maximum upload space (in mega-bytes) permitted for this user account.  
  95. A value of zero (0) indicates unlimited capacity (the minimum capacity is 5MB).
  96. All directories below the FTP Root Directory are included in the capacity
  97. calculation.
  98. </TD>
  99. </TR>
  100. <RCif RCEmailserver=true>
  101. <TR VALIGN=top>
  102. <TD align=right><B>Mailbox</B></TD>
  103. <TD>
  104. <INPUT TYPE="checkbox" NAME="mbox"> Create a local mailbox for this user.
  105. </TD>
  106. </TR>
  107. <RCendif>
  108. <TR>
  109. <TD></TD><TD><INPUT TYPE="submit" VALUE="Create New User"></TD>
  110. </TR>
  111. </TABLE>
  112. </FORM>
  113. </CENTER>
  114. </BODY>
  115. </HTML>
  116.