blob: 645bebb57e9042c0aa0073692c26a311bbbc4ef5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
// Heading
$_['heading_title'] = 'Change Password';
// Text
$_['text_account'] = 'Account';
$_['text_password'] = 'Your Password';
$_['text_success'] = 'Success: Your password has been successfully updated.';
// Entry
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Password Confirm';
// Error
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password confirmation does not match password!';
|