Files
bm/public_html/public/cms/templates/user.html
2025-09-24 13:26:28 +02:00

52 lines
1.9 KiB
HTML

<div class="divContent">
<h2>Benutzer</h2>
<div class="divLine">&nbsp;</div>
<table cellpadding="0" cellspacing="0">
<tr>
<th>Login</th>
<td><input type="text" name="login" value="{LOGIN}" 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()">
<option value="3" {LEVEL3}>Administrator</option>
<option value="2" {LEVEL2}>Redakteur</option>
<option value="1" {LEVEL1}>limitierter Benutzer</option>
</select>
</td>
</tr>
<tr>
<th>Wurzelverzeichnis</th>
<td><input type="text" name="root" value="{ROOT}" maxlength="32" class="formText" onChange="unsave()" /></td>
</tr>
<tr>
<th>Module</th>
<td>
<input type="checkbox" name="modules[]" value="GalleryContainer" {MOD_GC_CHECKED} onChange="unsave()" /> Galerie<br />
<input type="checkbox" name="modules[]" value="TicketRoot" {MOD_TR_CHECKED} onChange="unsave()" /> Programm<br />
<input type="checkbox" name="modules[]" value="NewsletterRoot" {MOD_NR_CHECKED} onChange="unsave()" /> Newsletter<br />
<input type="checkbox" name="modules[]" value="CustomerRoot" {MOD_CR_CHECKED} onChange="unsave()" /> Besucherdaten
</td>
</tr>
<!-- ENDBLOCK ADMIN -->
</table>
</div>
<div class="divSeparator">&nbsp;</div>