[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文件
文件大小: 1.14 KiB
MD5: bebcd76b29e73b3a6406314b928d0a43

password_forgotten.php - 关闭高亮
  1. <?php
  2. /**
  3.  * @package languageDefines
  4.  * @copyright Copyright 2003-2006 Zen Cart Development Team
  5.  * @copyright Portions Copyright 2003 osCommerce
  6.  * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
  7.  * @version $Id: password_forgotten.php 3086 2006-03-01 00:40:57Z drbyte $
  8.  */
  9.  
  10. define('NAVBAR_TITLE_1', 'Login');
  11. define('NAVBAR_TITLE_2', 'Password Forgotten');
  12.  
  13. define('HEADING_TITLE', 'Forgotten Password');
  14.  
  15. define('TEXT_MAIN', 'Enter your email address below and we\'ll send you an email message containing your new password.');
  16.  
  17. define('TEXT_NO_EMAIL_ADDRESS_FOUND', 'Error: The Email Address was not found in our records; please try again.');
  18.  
  19. define('EMAIL_PASSWORD_REMINDER_SUBJECT', STORE_NAME . ' - New Password');
  20. define('EMAIL_PASSWORD_REMINDER_BODY', 'A new password was requested from ' . $_SERVER['REMOTE_ADDR']  . '.' . "\n\n" . 'Your new password to \'' . STORE_NAME . '\' is:' . "\n\n" . '   %s' . "\n\nAfter you have logged in using the new password, you may change it by going to the 'My Account' area.");
  21.  
  22. define('SUCCESS_PASSWORD_SENT', 'A new password has been sent to your email address.');
  23. ?>