8228514240255c8100fc131d6eb3a19fbb2e9a31
bernd Duplikate-Problem gefixed....

bernd authored 16 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

5) Written by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

9) This code is published under a 0BSD license.
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

10) 
11) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
12) */
bernd Duplikate-Problem gefixed....

bernd authored 16 years ago

13) 
14) require_once('session/start.php');
15) 
16) require_once('jabberaccounts.php');
17) 
18) require_role(ROLE_CUSTOMER);
19) 
bernd Menü-Eintrag bleibt aktiv b...

bernd authored 16 years ago

20) $section = 'jabber_accounts';
bernd Benutze überall title() sta...

bernd authored 13 years ago

21) title("Passwort für Jabber-Account ändern");
bernd Duplikate-Problem gefixed....

bernd authored 16 years ago

22) 
23) $account = get_jabberaccount_details($_GET['account']);
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

24) $account_string = $account['local'] . '@' . $account['domain'];
bernd Duplikate-Problem gefixed....

bernd authored 16 years ago

25) 
bernd eliminate .php extensions f...

bernd authored 15 years ago

26) output(html_form('jabber_chpass', 'save', 'action=chpass', '
bernd Duplikate-Problem gefixed....

bernd authored 16 years ago

27) <table>
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

28) <tr><td>Account-Name:</td><td>' . $account_string . '</td></tr>
Hanno Böck autocomplete values for jab...

Hanno Böck authored 3 months ago

29) <tr><td>Passwort:</td><td><input type="password" name="newpass" value="" autocomplete="new-password"></td></tr>
30) <tr><td>Wiederholung:</td><td><input type="password" name="newpass2" value="" autocomplete="new-password"></td></tr>
bernd Duplikate-Problem gefixed....

bernd authored 16 years ago

31) </table>
Hanno Böck autocomplete values for jab...

Hanno Böck authored 3 months ago

32) <br>
33) <input type="hidden" name="accountid" value="' . $account['id'] . '">
34) <input type="submit" name="submit" value="Speichern">