44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<div class="divContent">
|
|
<h2>Benutzer</h2>
|
|
<div class="divLine"> </div>
|
|
<table cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<th>Login</th>
|
|
<td><input type="text" name="login" value="{LOGIN}" disabled="disabled" maxlength="32" class="formText" onChange="unsave()" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Passwort</th>
|
|
<td><input type="password" name="password1" class="formText" onChange="unsave()" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Passwort (WH)</th>
|
|
<td><input type="password" name="password2" class="formText" onChange="unsave()" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Autologin</th>
|
|
<td>
|
|
<input type="radio" name="autologin" value="1" {AUTOLOGIN_ON} onChange="unsave()" /> ja
|
|
<input type="radio" name="autologin" value="0" {AUTOLOGIN_OFF} onChange="unsave()" /> nein
|
|
</td>
|
|
</tr>
|
|
<!-- BEGINBLOCK ADMIN -->
|
|
<tr>
|
|
<th>Status</th>
|
|
<td>
|
|
<select name="level" onChange="unsave()" disabled="disabled">
|
|
<option value="3" {LEVEL3}>Administrator</option>
|
|
<option value="2" {LEVEL2}>Redakteur</option>
|
|
<option value="1" {LEVEL1}>limitierter Benutzer</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="divSeparator"> </div>
|
|
<div class="divContent">
|
|
<h2>Aktionen</h2>
|
|
<div class="divLine"> </div>
|
|
<input type="submit" name="save" value="Speichern" class="formSubmit" onClick="setAction('save')" />
|
|
</div>
|
|
<div class="divSeparator"> </div>
|