summaryrefslogtreecommitdiff
path: root/rt/webrt/Admin/Elements/ModifyUser
blob: 53aa027c09f712e0b00def80f2f819dd5c5d383f (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77

<& /Elements/TitleBoxStart, title => 'Editing Configuration for user '.$UserObj->Name &>

<FORM ACTION="<%$RT::WebPath%>/Admin/Users/Modify.html" METHOD=POST>
<INPUT TYPE=HIDDEN NAME=id VALUE="<%$UserObj->Id%>">

Name: <input name="Name" value="<%$UserObj->Name%>">
<BR>
New Password: <input type=password name="Pass1"><BR>
Retype Password: <input type=password name="Pass2"><BR>

Comments: <TEXTAREA name="Comments" COLS=80 ROWS=5 WRAP=VIRTUAL>
<%$UserObj->Comments%></TEXTAREA>

<BR>
Signature: <TEXTAREA COLS=80 ROWS=5 name="Signature" WRAP=HARD>
<%$UserObj->Signature%></TEXTAREA>
<BR>
EmailAddress: <input name="EmailAddress" value="<%$UserObj->EmailAddress%>">
<BR>
FreeformContactInfo: <input name="FreeformContactInfo" value="<%$UserObj->FreeformContactInfo%>">
<BR>
Organization: <input name="Organization" value="<%$UserObj->Organization%>">
<BR>
RealName: <input name="RealName" value="<%$UserObj->RealName%>">
<BR>
NickName: <input name="NickName" value="<%$UserObj->NickName%>">
<BR>
Lang: <input name="Lang" value="<%$UserObj->Lang%>">
<BR>
EmailEncoding: <input name="EmailEncoding" value="<%$UserObj->EmailEncoding%>">
<BR>
WebEncoding: <input name="WebEncoding" value="<%$UserObj->WebEncoding%>">
<BR>
ExternalContactInfoId: <input name="ExternalContactInfoId" value="<%$UserObj->ExternalContactInfoId%>">
<BR>
ContactInfoSystem: <input name="ContactInfoSystem" value="<%$UserObj->ContactInfoSystem%>">
<BR>
Gecos: <input name="Gecos" value="<%$UserObj->Gecos%>">
<BR>
ExternalAuthId: <input name="ExternalAuthId" value="<%$UserObj->ExternalAuthId%>">
<BR>
AuthSystem: <input name="AuthSystem" value="<%$UserObj->AuthSystem%>">
<BR>
HomePhone: <input name="HomePhone" value="<%$UserObj->HomePhone%>">
<BR>
WorkPhone: <input name="WorkPhone" value="<%$UserObj->WorkPhone%>">
<BR>
MobilePhone: <input name="MobilePhone" value="<%$UserObj->MobilePhone%>">
<BR>
PagerPhone: <input name="PagerPhone" value="<%$UserObj->PagerPhone%>">
<BR>
Address1: <input name="Address1" value="<%$UserObj->Address1%>">
<BR>
Address2: <input name="Address2" value="<%$UserObj->Address2%>">
<BR>
City: <input name="City" value="<%$UserObj->City%>">
<BR>
State: <input name="State" value="<%$UserObj->State%>">
<BR>
Zip: <input name="Zip" value="<%$UserObj->Zip%>">
<BR>
Country: <input name="Country" value="<%$UserObj->Country%>">
<BR>
<& /Elements/Submit &>
</form>
<& /Elements/TitleBoxEnd &>

<%INIT>

</%INIT>

<%ARGS>


$UserObj => undef
</%ARGS>