3ef995c2108fe77d22c0b556fb9717cb848bc48f
bernd Duplikate-Problem gefixed....

bernd authored 19 years ago

1) <?php
Hanno Böck Add newlines before comment...

Hanno Böck authored 1 year ago

2) 
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 14 years ago

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

Hanno Böck authored 3 years ago

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

Bernd Wurst authored 14 years ago

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

Hanno Böck authored 3 years ago

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

Bernd Wurst authored 14 years ago

11) 
12) 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.
13) */
bernd Duplikate-Problem gefixed....

bernd authored 19 years ago

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

bernd authored 18 years ago

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

bernd authored 15 years ago

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

bernd authored 19 years ago

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

Hanno Böck authored 2 years ago

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

bernd authored 19 years ago

26) 
bernd eliminate .php extensions f...

bernd authored 17 years ago

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

bernd authored 19 years ago

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

Hanno Böck authored 2 years ago

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

Hanno Böck authored 2 years ago

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

bernd authored 19 years ago

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

Hanno Böck authored 2 years ago

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