git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
f2550e9
Branches
Tags
master
ticket
webinterface.git
modules
systemuser
pwchange.php
Benutze überall title() statt output("<h3>...</h3>")
bernd
commited
f2550e9
at 2010-09-18 13:35:15
pwchange.php
Blame
History
Raw
<?php require_once('inc/base.php'); require_once('useraccounts.php'); require_role(ROLE_CUSTOMER); title("Passwort neu setzen"); $section = "systemuser_accounts"; $account = get_account_details($_GET['uid']); headline("Rücksetzen des Passworts für Benutzer »{$account['username']}«"); if (customer_useraccount($account['uid'])) system_failure('Zum Ändern des Passwortes für den Hauptbenutzer verwenden Sie bitte die entsprechende Funktion im Hauptmenü!'); output(html_form('systemuser_pwchange', 'save', 'action=pwchange&uid='.$account['uid'], ' <h5>Neues Passwort</h5> <div style="margin-left: 2em;"> <p>Geben Sie bitte Ihr neues Passwort zweimal ein. Bitte verzichten Sie auf Anführungszeichen!</p> <p><label for="newpass1">Neues Passwort für »<strong>'.$account['username'].'</strong>«:</label> <input type="password" name="newpass1" id="newpass1" /></p> <p><label for="newpass2">Wiederholung des Passworts:</label> <input type="password" name="newpass2" id="newpass2" /></p> </div> <p> <input type="submit" name="submit" value="Speichern" /> </p> ')); ?>