Project

General

Profile

1 1641 Luisehahne
<!-- BEGIN main_block -->
2
3
<script type="text/javascript">
4
function toggle_radio(radio_on, radio_off) {
5
	document.getElementById(radio_on).checked = true;
6
	document.getElementById(radio_off).checked = true;
7
}
8
</script>
9 1773 Luisehahne
<div class="account">
10 1641 Luisehahne
11 1815 Luisehahne
<h3 class="left bold" style="{DISPLAY_EXTRA}">{HEADING_MODIFY_USER}</h3>
12 1641 Luisehahne
13 1815 Luisehahne
<form action="{ACTION_URL}" method="post" class="{DISPLAY_ADD} left settings_table">
14 1641 Luisehahne
<input type="hidden" name="user_id" value="{USER_ID}" />
15
<input type="hidden" name="username_fieldname" value="{USERNAME_FIELDNAME}" />
16 1815 Luisehahne
<input type="hidden" name="BackLink" value="{BACK_LINK}" />
17 1823 Luisehahne
<input type="hidden" name="cancel_url" value="{{CANCEL_URL}}" />
18 1641 Luisehahne
{FTAN}
19 1773 Luisehahne
<table>
20 1710 Luisehahne
<!-- BEGIN show_modify_loginname_block -->
21 1641 Luisehahne
<tr>
22 1777 Luisehahne
	<td class="right">{TEXT_USERNAME}:</td>
23 1641 Luisehahne
	<td class="value_input">
24 1710 Luisehahne
		<input type="hidden" name="{USERNAME_FIELDNAME}" value="{USERNAME}" />
25
		<input class="button" type="button" value="{USERNAME}" disabled="disabled" readonly="readonly" />
26
	</td>
27
</tr>
28
<!-- END show_modify_loginname_block -->
29
<!-- BEGIN show_add_loginname_block -->
30
<tr>
31 1777 Luisehahne
	<td class="right">{TEXT_USERNAME}:</td>
32 1710 Luisehahne
	<td class="value_input">
33 1641 Luisehahne
		<input type="text" name="{USERNAME_FIELDNAME}" maxlength="30" value="{USERNAME}" />
34
	</td>
35
</tr>
36 1710 Luisehahne
<!-- END show_add_loginname_block -->
37 1641 Luisehahne
<tr>
38 1777 Luisehahne
	<td class="right">{TEXT_PASSWORD}:</td>
39 1641 Luisehahne
	<td class="value_input">
40 1805 Luisehahne
		<input type="password" name="password" value="" maxlength="30" />
41 1641 Luisehahne
	</td>
42
</tr>
43
<tr>
44 1777 Luisehahne
	<td class="right">{TEXT_RETYPE_PASSWORD}:</td>
45 1641 Luisehahne
	<td class="value_input">
46 1805 Luisehahne
		<input type="password" name="password2" value="" maxlength="30" />
47 1641 Luisehahne
	</td>
48
</tr>
49
<tr style="{DISPLAY_EXTRA}">
50 1804 Luisehahne
	<td colspan="2" style="">
51 1815 Luisehahne
		<div class="warning value_input" style="max-width:650px; margin-right: 23%; float: right;">{CHANGING_PASSWORD}</div>
52 1641 Luisehahne
	</td>
53
</tr>
54
<tr>
55 1777 Luisehahne
	<td class="right">{TEXT_DISPLAY_NAME}:</td>
56 1641 Luisehahne
	<td class="value_input">
57
		<input type="text" name="display_name" maxlength="255" value="{DISPLAY_NAME}" />
58
	</td>
59
</tr>
60
<tr>
61 1777 Luisehahne
	<td class="right">{TEXT_EMAIL}:</td>
62 1641 Luisehahne
	<td class="value_input">
63
		<input type="text" name="email" maxlength="255" value="{EMAIL}" />
64
	</td>
65
</tr>
66
<tr style="{DISPLAY_HOME_FOLDERS}">
67 1777 Luisehahne
	<td class="right">{TEXT_HOME_FOLDER}:</td>
68 1641 Luisehahne
	<td class="value_input">
69
		<select name="home_folder">
70
			<option value="">{TEXT_NONE}</option>
71
			<!-- BEGIN folder_list_block -->
72
			<option value="{FOLDER}"{SELECTED}>{NAME}</option>
73
			<!-- END folder_list_block -->
74
		</select>
75
	</td>
76
</tr>
77 1815 Luisehahne
78
<!-- BEGIN show_change_group_list_block -->
79 1641 Luisehahne
<tr>
80 1815 Luisehahne
	<td colspan="2" style="">
81
		<div class="warning value_input" style="max-width:650px; margin-right: 23%; float: right;">{CHANGING_GROUPS}</div>
82
	</td>
83
</tr>
84
<!-- END show_change_group_list_block -->
85
86
<tr>
87 1777 Luisehahne
	<td class="rightTop">{TEXT_GROUP}:</td>
88 1641 Luisehahne
	<td class="value_input">
89
		<select name="groups[]" multiple="multiple" size="5">
90
		<!-- BEGIN group_list_block -->
91
			<option value="{ID}" {SELECTED}>{NAME}</option>
92
		<!-- END group_list_block -->
93
		</select>
94
	</td>
95
</tr>
96
<tr>
97 1777 Luisehahne
	<td class="right">&nbsp;</td>
98 1641 Luisehahne
	<td>
99
		<input type="radio" name="active[]" id="active" value="1" {ACTIVE_CHECKED} />
100
		<label for="active">{TEXT_ACTIVE}</label>
101
		<input type="radio" name="active[]" id="disabled" value="0" {DISABLED_CHECKED} />
102
		<label for="disabled">{TEXT_DISABLED}</label>
103
	</td>
104
</tr>
105
<tr>
106 1773 Luisehahne
	<td colspan="2" class="center">
107 1815 Luisehahne
		<input type="submit" name="{SUB_ACTION}" value="{SUBMIT_TITLE}" />
108 1823 Luisehahne
		<span class="{HIDE_SAVE_BACK}"><input type="submit" name="save_back" value="{TEXT_SAVE_BACK}" /></span>
109 1641 Luisehahne
		<input type="reset" name="reset" value="{TEXT_RESET}" />
110 1815 Luisehahne
		<input type="button" style="width: 100px; margin-top: 5px;" onclick="javascript:window.location='{CANCEL_URL}';" value="{TEXT_CANCEL}" />
111 1641 Luisehahne
	</td>
112
</tr>
113
</table>
114
115
</form>
116 1773 Luisehahne
</div>
117 1805 Luisehahne
<script type="text/javascript">
118
<!--
119
$(document).ready(function(){
120
    var passwordField = $('input[name=password]');
121
    passwordField.attr('autocomplete','off');
122
    passwordField.val('');
123
    var DisplayNameField = $('input[name=display_name]');
124
    DisplayNameField.focus();
125
});
126
-->
127
</script>
128 1641 Luisehahne
<!-- END main_block -->