Viewing file: auth.php (1.06 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
return array (
'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
'terms_condition' => 'By clicking Sign Up you are agree to our :terms',
'form' =>
array (
'button' =>
array (
'sign_in' => 'Sign In',
'sign_up' => 'Sign Up',
'login'=>'Login',
'reset' => 'Reset',
'submit' => 'Submit',
),
'forget_password' => 'Forget Password',
'registration' => 'Need a trial?',
'sign_in' => 'Already have account?',
),
'login' =>
array (
'title' => 'Sign in to start your session',
'form' =>
array (
'email' => 'Email',
'password' => 'Password',
'remember_me' => 'Remember me',
'copy' => 'Fill Demo Data',
),
),
'registration' =>
array (
'title' => 'Sign up to get start',
'form' =>
array (
'first_name' => 'First name',
'last_name' => 'Last name',
'email' => 'Email',
'password' => 'Password',
),
),
);
|