[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 password_forgotten.php

Zen Cart 源代码 password_forgotten.php




下载文件

文件名: password_forgotten.php
文件类型: PHP文件
文件大小: 2.23 KiB
MD5: cdd1da727a12edecb75dc2a434c8023c

password_forgotten.php - 关闭高亮
  1. <?php
  2. //
  3. // +----------------------------------------------------------------------+
  4. // |zen-cart Open Source E-commerce                                       |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 2003 The zen-cart developers                           |
  7. // |                                                                      |
  8. // | http://www.zen-cart.com/index.php                                    |
  9. // |                                                                      |
  10. // | Portions Copyright (c) 2003 osCommerce                               |
  11. // +----------------------------------------------------------------------+
  12. // | This source file is subject to version 2.0 of the GPL license,       |
  13. // | that is bundled with this package in the file LICENSE, and is        |
  14. // | available through the world-wide-web at the following url:           |
  15. // | http://www.zen-cart.com/license/2_0.txt.                             |
  16. // | If you did not receive a copy of the zen-cart license and are unable |
  17. // | to obtain it through the world-wide-web, please send a note to       |
  18. // | license@zen-cart.com so we can mail you a copy immediately.          |
  19. // +----------------------------------------------------------------------+
  20. // | Simplified Chinese version   http://www.zen-cart.cn                  |
  21. // +----------------------------------------------------------------------+
  22. // $Id: password_forgotten.php 290 2004-09-15 19:48:26Z wilt $
  23. //
  24.  
  25. define('NAVBAR_TITLE_1', '登录');
  26. define('NAVBAR_TITLE_2', '取回密码');
  27.  
  28. define('HEADING_TITLE', '取回密码');
  29.  
  30. define('TEXT_MAIN', '请输入您的电子邮件地址,我们会将新的密码发给您');
  31.  
  32. define('TEXT_NO_EMAIL_ADDRESS_FOUND', '错误: 该电子邮件地址不在记录中,请再试一次。');
  33.  
  34. define('EMAIL_PASSWORD_REMINDER_SUBJECT', STORE_NAME . ' - 新密码');
  35. define('EMAIL_PASSWORD_REMINDER_BODY', '重置密码的请求来自' . $_SERVER['REMOTE_ADDR']  . '。' . "\n\n" . '您在\'' . STORE_NAME . '\'的新密码是:' . "\n\n" . '   %s' . "\n\n用新的密码登录后,可以在'我的帐号'中修改。");
  36.  
  37. define('SUCCESS_PASSWORD_SENT', '新密码已经发到您的邮箱了。');
  38. ?>