git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
92f133e
Branches
Tags
master
ticket
webinterface.git
modules
systemuser
pwchange.php
Überarbeitetes Systemuser-Modul, mit dem man Quotas, Realname und Shell selbst setzen kann.
bernd
commited
92f133e
at 2010-04-12 15:46:40
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']); output("<h3>Rücksetzen des Passworts für Benutzer »{$account['username']}«</h3>"); 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> ')); ?>