summaryrefslogtreecommitdiff
path: root/rt/html/Admin/Elements/ModifyUser
blob: 2faefefaac7031babd30fadb11e79e6fb8d072bd (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
%# BEGIN LICENSE BLOCK
%# 
%# Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
%# 
%# (Except where explictly superceded by other copyright notices)
%# 
%# This work is made available to you under the terms of Version 2 of
%# the GNU General Public License. A copy of that license should have
%# been provided with this software, but in any event can be snarfed
%# from www.gnu.org.
%# 
%# This work is distributed in the hope that it will be useful, but
%# WITHOUT ANY WARRANTY; without even the implied warranty of
%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
%# General Public License for more details.
%# 
%# Unless otherwise specified, all modifications, corrections or
%# extensions to this work which alter its source code become the
%# property of Best Practical Solutions, LLC when submitted for
%# inclusion in the work.
%# 
%# 
%# END LICENSE BLOCK
<& /Elements/TitleBoxStart, title => loc('Editing Configuration for user [_1]', $UserObj->Name) &>

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

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

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

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

<%INIT>

</%INIT>

<%ARGS>


$UserObj => undef
</%ARGS>