5effc2bd7685822df276c1372dab480cff321941
bernd one-time-URLs für systemuser

bernd authored 15 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) 
Bernd Wurst Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 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) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) 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.
15) */
16) 
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

17) require_once('newpass.php');
18) require_once('inc/security.php');
19) 
bernd Benutze überall title() sta...

bernd authored 13 years ago

20) title("Passwort setzen");
bernd one-time-URLs für systemuser

bernd authored 15 years ago

21) $show = 'token';
22) 
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

23) if (isset($_REQUEST['token']))
bernd one-time-URLs für systemuser

bernd authored 15 years ago

24) {
25)   $token = $_REQUEST['token'];
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

26)   $uid = get_uid_for_token($token);
bernd one-time-URLs für systemuser

bernd authored 15 years ago

27)   
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

28)   if ($uid != NULL && validate_uid_token($uid, $token))
bernd one-time-URLs für systemuser

bernd authored 15 years ago

29)   {
bernd AGB bestätigen lassen

bernd authored 15 years ago

30)     $show = 'agb';
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

31)     if (isset($_REQUEST['agb']) && $_REQUEST['agb'] == '1') {
bernd AGB bestätigen lassen

bernd authored 15 years ago

32)       $show = 'password';
33)     }
bernd one-time-URLs für systemuser

bernd authored 15 years ago

34)     if (isset($_POST['password']))
35)     {
36)       if ($_POST['password'] != $_POST['password2'])
37)         input_error("Die beiden Passwort-Eingaben stimmen nicht überein.");
38)       elseif ($_POST['password'] == '')
39)         input_error("Es kann kein leeres Passwort gesetzt werden");
Bernd Wurst Zeige Username beim Passwor...

Bernd Wurst authored 11 years ago

40)       elseif (preg_match('/["\'\\\\]/', $_POST['password']) === 1)
41)         input_error("Das Passwort enthält problematische Zeichen. Bitte keine Anführungszeichen und kein Backslash benutzen.");
bernd one-time-URLs für systemuser

bernd authored 15 years ago

42)       elseif (($result = strong_password($_POST['password'])) !== true)
43)         input_error("Das Passwort ist zu einfach (cracklib sagt: {$result})!");
44)       else
45)       {
46)         require_once('session/checkuser.php');
47)         require_once('inc/base.php');
bernd Logger mit Logleveln

bernd authored 14 years ago

48)         logger(LOG_INFO, "modules/index/initialize_useraccount", "initialize", "uid »{$uid}« set a new password");
bernd one-time-URLs für systemuser

bernd authored 15 years ago

49)         set_systemuser_password($uid, $_POST['password']);
50)         invalidate_systemuser_token($uid);
51)         $_SESSION['role'] = find_role($uid, '', True);;
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

52)       	setup_session($_SESSION['role'], $uid);
Bernd Wurst Nach dem Setzen des Passwor...

Bernd Wurst authored 11 years ago

53)         success_msg('Das Passwort wurde gesetzt!');
54)         redirect('index');
bernd one-time-URLs für systemuser

bernd authored 15 years ago

55)       }
56)     }
57)   }
58)   else
59)   {
bernd Fehlermeldung bei falschem...

bernd authored 13 years ago

60)     input_error("Der eingegebene Code war nicht korrekt. Eventuell haben Sie die Adresse nicht vollständig übernommen oder die Gültigkeit des Sicherheitscodes ist abgelaufen.");
bernd one-time-URLs für systemuser

bernd authored 15 years ago

61)   }
62) }
63) 
64) if ($show == 'password')
65) {
Bernd Wurst Zeige Username beim Passwor...

Bernd Wurst authored 11 years ago

66)   $username = get_username_for_uid($uid);
bernd Benutze überall title() sta...

bernd authored 13 years ago

67)   title("Neues Passwort setzen");
Bernd Wurst Zeige Username beim Passwor...

Bernd Wurst authored 11 years ago

68)   output('<p>Bitte legen Sie jetzt Ihr neues Passwort fest.</p>'.
bernd one-time-URLs für systemuser

bernd authored 15 years ago

69)   html_form('initialize_useraccount', '', '', '<p style="display: none"><input type="hidden" name="uid" value="'.$uid.'" />
bernd AGB bestätigen lassen

bernd authored 15 years ago

70)   <input type="hidden" name="token" value="'.$token.'" /><input type="hidden" name="agb" value="1" /></p>
Bernd Wurst Zeige Username beim Passwor...

Bernd Wurst authored 11 years ago

71)   <p><span class="login_label">Ihr Benutzername:</span> <strong>'.$username.'</strong></p>
bernd one-time-URLs für systemuser

bernd authored 15 years ago

72)   <p><span class="login_label">Neues Passwort:</span> <input type="password" name="password" size="30" /></p>
73)   <p><span class="login_label">Bestätigung:</span> <input type="password" name="password2" size="30" /></p>
74)   <p><span class="login_label">&#160;</span> <input type="submit" value="Passwort setzen" /></p>
75)   '));
76) }
bernd AGB bestätigen lassen

bernd authored 15 years ago

77) elseif ($show == 'agb')
78) {
bernd Benutze überall title() sta...

bernd authored 13 years ago

79)   title("Bestätigung unserer AGB");
80)   output('<p>Die Nutzung unseres Angebots ist an unsere <a href="http://www.schokokeks.org/agb">Allgemeinen Geschäftsbedingungen</a> gebunden. Bitte lesen Sie diese Bedingungen und bestätigen Sie Ihr Einverständnis. Sollten Sie diese Bedingungen nicht akzeptieren, setzen Sie sich bitte mit uns in Verbindung.</p>'.
bernd AGB bestätigen lassen

bernd authored 15 years ago

81)   html_form('initialize_useraccount_agb', '', '', '<p style="display: none"><input type="hidden" name="uid" value="'.$uid.'" />
82)   <input type="hidden" name="token" value="'.$token.'" /></p>
83)   <p><span class="login_label">&#160;</span><input type="checkbox" name="agb" value="1" /> Ja, ich akzeptiere die AGB.<p>
84)   <p><span class="login_label">&#160;</span> <input type="submit" value="Weiter" /></p>
85)   '));
86) }
bernd one-time-URLs für systemuser

bernd authored 15 years ago

87) elseif ($show == 'token')
88) {
bernd Benutze überall title() sta...

bernd authored 13 years ago

89)   title("Neues Passwort setzen");
90)   output('<p>Bitte rufen Sie die Adresse aus Ihrer Begrüßungs-E-Mail auf um ein neues Passwort zu setzen.');