Viewing file: auth.php (1.28 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', 'welcome' => 'Welcome To :app_name !', 'create' => 'Create account with', 'sign_account' => 'Already have an account?', 'register_account' => 'Register your account', 'form' => array ( 'button' => array ( 'sign_in' => 'Sign In', 'sign_up' => 'Sign Up', 'reset' => 'Reset', 'submit' => 'Submit', ), 'forget_password' => 'I forgot my 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' => 'Copy', 'email_placeholder' => 'Enter your email address', 'password_placeholder' => 'Enter your password address', ), ), 'registration' => array ( 'title' => 'Sign up to get start', 'form' => array ( 'first_name' => 'First name', 'last_name' => 'Last name', 'email' => 'Email', 'password' => 'Password', ), ), );
|