f2550e90ad37215b9d890155806986336bf0170c
bernd webinterface => /webinterface

bernd authored 17 years ago

modules/index/new_password.php           1) <?php
bernd Benutze überall title() sta...

bernd authored 13 years ago

modules/index/new_customer_password.php  2) title("Neues Passwort beantragen");
bernd webinterface => /webinterface

bernd authored 17 years ago

modules/index/new_password.php           3) 
modules/index/new_password.php           4) //require_once('inc/error.php');
modules/index/new_password.php           5) //system_failure("Diese Funktion ist noch nicht fertiggestellt.");
modules/index/new_password.php           6) 
modules/index/new_password.php           7) if (isset($_POST['customerno']))
modules/index/new_password.php           8) {
modules/index/new_password.php           9)   require_once('newpass.php');
modules/index/new_password.php          10)   if (customer_has_email($_POST['customerno'], $_POST['email']))
modules/index/new_password.php          11)   {
modules/index/new_password.php          12)     if (create_token($_POST['customerno']))
modules/index/new_password.php          13)     {
modules/index/new_password.php          14)       require_once('mail.php');
bernd Logging aktiviert

bernd authored 16 years ago

modules/index/new_password.php          15)       require_once('inc/base.php');
bernd webinterface => /webinterface

bernd authored 17 years ago

modules/index/new_password.php          16)       send_customer_token($_POST['customerno']);
bernd Logger mit Logleveln

bernd authored 14 years ago

modules/index/new_customer_password.php 17)       logger(LOG_INFO, "modules/index/new_password", "pwrecovery", "token sent for customer »{$_POST['customerno']}«");
bernd webinterface => /webinterface

bernd authored 17 years ago

modules/index/new_password.php          18)       success_msg('Die angegebenen Daten waren korrekt, Sie sollten umgehend eine E-Mail erhalten.');
modules/index/new_password.php          19)     }
modules/index/new_password.php          20)   }
modules/index/new_password.php          21)   else
modules/index/new_password.php          22)   {
modules/index/new_password.php          23)     input_error("Die eingegebenen Daten waren nicht korrekt. Sollten Sie nicht mehr wissen, welche E-Mail-Adresse Sie angegeben haben, wenden Sie sich bitte an einen Administrator.");
modules/index/new_password.php          24)   }
modules/index/new_password.php          25) }
modules/index/new_password.php          26) 
bernd Benutze überall title() sta...

bernd authored 13 years ago

modules/index/new_customer_password.php 27) output('<p>Sofern Sie bei Ihrer Anmeldung noch kein Passwort für Ihren Kundenaccount festgelegt hatten, können Sie hier ein neues Passwort festlegen. Sie müssen dafür Ihre Kundennummer und die bei der Anmeldung angegebene E-Mail-Adresse eingeben.</p>
bernd webinterface => /webinterface

bernd authored 17 years ago

modules/index/new_password.php          28) <p>Nach dem Ausfüllen dieses Formulars erhalten Sie eine E-Mail mit einem Link, den Sie in Ihrem Browser öffnen müssen. Dort können Sie dann ein neues Passwort eingeben.</p>
modules/index/new_password.php          29) <form action="" method="post">
modules/index/new_password.php          30) <p><span class="login_label">Kundennummer:</span> <input type="text" name="customerno" size="30" /></p>
modules/index/new_password.php          31) <p><span class="login_label">E-Mail-Adresse:</span> <input type="text" name="email" size="30" /></p>
bernd Entities repariert

bernd authored 16 years ago

modules/index/new_password.php          32) <p><span class="login_label">&#160;</span> <input type="submit" value="Passwort anfordern" /></p>