Changeset 567 for trunk/wifidog-auth/wifidog/lost_password.php
- Timestamp:
- 04/25/05 12:17:55 (8 years ago)
- Files:
-
- 1 modified
-
trunk/wifidog-auth/wifidog/lost_password.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/lost_password.php
r530 r567 28 28 require_once BASEPATH.'include/common_interface.php'; 29 29 require_once BASEPATH.'classes/User.php'; 30 require_once BASEPATH.'classes/MainUI.php'; 30 31 31 32 if (isset($_REQUEST['submit'])) { … … 54 55 55 56 $smarty->assign('message', _('A new password has been emailed to you.')); 56 $smarty->display('templates/validate.html'); 57 //$smarty->display('templates/validate.html'); 58 $ui = new MainUI(); 59 $ui->setMainContent($smarty->fetch("templates/validate.html")); 60 $ui->display(); 57 61 exit; 58 62 } catch (Exception $e) { … … 73 77 isset ($_REQUEST["auth_source"]) && $smarty->assign('selected_auth_source', $_REQUEST["auth_source"]); 74 78 75 $smarty->display("templates/lost_password.html"); 79 //$smarty->display("templates/lost_password.html"); 80 $ui = new MainUI(); 81 $smarty->assign('SelectNetworkUI', Network::getSelectNetworkUI('auth_source')); 82 $ui->setMainContent($smarty->fetch("templates/lost_password.html")); 83 $ui->display(); 76 84 ?>
