-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserAdd.page
More file actions
40 lines (24 loc) · 1.11 KB
/
UserAdd.page
File metadata and controls
40 lines (24 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Icon="icons/user.png"
Menu="UserList"
Title="Add User"
---
<form markdown="1" method="POST" action="/update.htm" target="progressFrame">
User name:
: <input type="text" name="userName" maxlength="40">
> Usernames may be up to 32 characters long and must start with a **lower case letter** or an underscore,
> followed by **lower case letters**, digits, underscores, or dashes. They can end with a dollar sign.
> In regular expression terms: `[a-z_][a-z0-9_-]*[$]?`
Description:
: <input type="text" name="userDesc" maxlength="64">
> Up to 64 characters.
Password:
: <input type="password" name="userPassword" maxlength="40"
onKeyUp="this.form.cmdUserEdit.disabled = (this.form.userPassword.value != this.form.userPasswordConf.value);">
> Up to 40 characters.
Retype password:
: <input type="password" name="userPasswordConf" maxlength="40"
onKeyUp="this.form.cmdUserEdit.disabled = (this.form.userPassword.value != this.form.userPasswordConf.value);">
: <input type="submit" name="cmdUserEdit" value="Add">
<button type="button" onClick="done();">Done</button>
</form>