22 lines
974 B
PHP
22 lines
974 B
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Forgot Your Password?';
|
|
$_['heading_reset'] = 'Reset your password';
|
|
|
|
// Text
|
|
$_['text_email'] = 'Enter the e-mail address associated with your account. Click submit to have a password reset link e-mailed to you.';
|
|
$_['text_success'] = 'An email with a confirmation link has been sent your admin email address.';
|
|
$_['text_password'] = 'Enter the new password you wish to use.';
|
|
$_['text_reset'] = 'Success: Your password has been successfully updated.';
|
|
|
|
// Entry
|
|
$_['entry_password'] = 'Password';
|
|
$_['entry_confirm'] = 'Confirm';
|
|
$_['entry_email'] = 'E-Mail Address';
|
|
|
|
// Error
|
|
$_['error_email'] = 'Warning: The E-Mail Address was not found in our records!';
|
|
$_['error_code'] = 'Reset code does not match!';
|
|
$_['error_disabled'] = 'Password reset has been disabled!';
|
|
$_['error_password'] = 'Password must be between 4 and 20 characters!';
|
|
$_['error_confirm'] = 'Password and password confirmation do not match!'; |