blob: cb0fa9ea7db02c14771dc24d6f63c428bd5a0f17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
// Heading
$_['heading_title'] = 'Reset your password';
// Text
$_['text_password'] = 'Enter the new password you wish to use.';
$_['text_success'] = 'Success: Your password has been successfully updated.';
// Entry
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Confirm';
// Error
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password and password confirmation do not match!';
|