git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
eef0d5f
Branches
Tags
master
ticket
webinterface.git
modules
jabber
chpass.php
Menü-Eintrag bleibt aktiv beim bearbeiten
bernd
commited
eef0d5f
at 2007-08-08 13:02:57
chpass.php
Blame
History
Raw
<?php require_once('session/start.php'); require_once('jabberaccounts.php'); require_role(ROLE_CUSTOMER); $section = 'jabber_accounts'; $title = "Neues Jabber-Konto erstellen"; $account = get_jabberaccount_details($_GET['account']); $account_string = $account['local'].'@'.$account['domain']; output("<h3>Passwort für Jabber-Account ändern</h3>"); output(html_form('jabber_chpass', 'save.php', 'action=chpass', ' <table> <tr><td>Account-Name:</td><td>'.$account_string.'</td></tr> <tr><td>Passwort:</td><td><input type="password" name="newpass" value="" /></td></tr> <tr><td>Wiederholung:</td><td><input type="password" name="newpass2" value="" /></td></tr> </table> <br /> <input type="hidden" name="accountid" value="'.$account['id'].'" /> <input type="submit" name="submit" value="Speichern" /> ')); ?>