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