import rt 3.8.10
[freeside.git] / rt / html / Admin / Elements / ModifyUser
1 %# BEGIN LICENSE BLOCK
2 %# 
3 %# Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4 %# 
5 %# (Except where explictly superceded by other copyright notices)
6 %# 
7 %# This work is made available to you under the terms of Version 2 of
8 %# the GNU General Public License. A copy of that license should have
9 %# been provided with this software, but in any event can be snarfed
10 %# from www.gnu.org.
11 %# 
12 %# This work is distributed in the hope that it will be useful, but
13 %# WITHOUT ANY WARRANTY; without even the implied warranty of
14 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 %# General Public License for more details.
16 %# 
17 %# Unless otherwise specified, all modifications, corrections or
18 %# extensions to this work which alter its source code become the
19 %# property of Best Practical Solutions, LLC when submitted for
20 %# inclusion in the work.
21 %# 
22 %# 
23 %# END LICENSE BLOCK
24 <& /Elements/TitleBoxStart, title => loc('Editing Configuration for user [_1]', $UserObj->Name) &>
25
26 <FORM ACTION="<%$RT::WebPath%>/Admin/Users/Modify.html" METHOD=POST>
27 <INPUT TYPE=HIDDEN NAME=id VALUE="<%$UserObj->Id%>">
28
29 <&|/l&>Name</&>: <input name="Name" value="<%$UserObj->Name%>">
30 <BR>
31 <&|/l&>New Password</&>: <input type=password name="Pass1"><BR>
32 <&|/l&>Retype Password</&>: <input type=password name="Pass2"><BR>
33
34 <&|/l&>Comments</&>: <TEXTAREA name="Comments" COLS=80 ROWS=5 WRAP=VIRTUAL>
35 <%$UserObj->Comments%></TEXTAREA>
36
37 <BR>
38 <&|/l&>Signature</&>: <TEXTAREA COLS=80 ROWS=5 name="Signature" WRAP=HARD>
39 <%$UserObj->Signature%></TEXTAREA>
40 <BR>
41 <&|/l&>EmailAddress</&>: <input name="EmailAddress" value="<%$UserObj->EmailAddress%>">
42 <BR>
43 <&|/l&>FreeformContactInfo</&>: <input name="FreeformContactInfo" value="<%$UserObj->FreeformContactInfo%>">
44 <BR>
45 <&|/l&>Organization</&>: <input name="Organization" value="<%$UserObj->Organization%>">
46 <BR>
47 <&|/l&>RealName</&>: <input name="RealName" value="<%$UserObj->RealName%>">
48 <BR>
49 <&|/l&>NickName</&>: <input name="NickName" value="<%$UserObj->NickName%>">
50 <BR>
51 <&|/l&>Lang</&>: <input name="Lang" value="<%$UserObj->Lang%>">
52 <BR>
53 <&|/l&>EmailEncoding</&>: <input name="EmailEncoding" value="<%$UserObj->EmailEncoding%>">
54 <BR>
55 <&|/l&>WebEncoding</&>: <input name="WebEncoding" value="<%$UserObj->WebEncoding%>">
56 <BR>
57 <&|/l&>ExternalContactInfoId</&>: <input name="ExternalContactInfoId" value="<%$UserObj->ExternalContactInfoId%>">
58 <BR>
59 <&|/l&>ContactInfoSystem</&>: <input name="ContactInfoSystem" value="<%$UserObj->ContactInfoSystem%>">
60 <BR>
61 <&|/l&>UnixUsername</&>: <input name="Gecos" value="<%$UserObj->Gecos%>">
62 <BR>
63 <&|/l&>ExternalAuthId</&>: <input name="ExternalAuthId" value="<%$UserObj->ExternalAuthId%>">
64 <BR>
65 <&|/l&>AuthSystem</&>: <input name="AuthSystem" value="<%$UserObj->AuthSystem%>">
66 <BR>
67 <&|/l&>HomePhone</&>: <input name="HomePhone" value="<%$UserObj->HomePhone%>">
68 <BR>
69 <&|/l&>WorkPhone</&>: <input name="WorkPhone" value="<%$UserObj->WorkPhone%>">
70 <BR>
71 <&|/l&>MobilePhone</&>: <input name="MobilePhone" value="<%$UserObj->MobilePhone%>">
72 <BR>
73 <&|/l&>PagerPhone</&>: <input name="PagerPhone" value="<%$UserObj->PagerPhone%>">
74 <BR>
75 <&|/l&>Address1</&>: <input name="Address1" value="<%$UserObj->Address1%>">
76 <BR>
77 <&|/l&>Address2</&>: <input name="Address2" value="<%$UserObj->Address2%>">
78 <BR>
79 <&|/l&>City</&>: <input name="City" value="<%$UserObj->City%>">
80 <BR>
81 <&|/l&>State</&>: <input name="State" value="<%$UserObj->State%>">
82 <BR>
83 <&|/l&>Zip</&>: <input name="Zip" value="<%$UserObj->Zip%>">
84 <BR>
85 <&|/l&>Country</&>: <input name="Country" value="<%$UserObj->Country%>">
86 <BR>
87 <& /Elements/Submit, Label => loc('Save Changes') &>
88 </form>
89 <& /Elements/TitleBoxEnd &>
90
91 <%INIT>
92
93 </%INIT>
94
95 <%ARGS>
96
97
98 $UserObj => undef
99 </%ARGS>