You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
<?php
|
|
|
|
return [
|
|
'login' => [
|
|
'header' => 'Sign in to your account',
|
|
'no_account' => "Don't have an account?",
|
|
'register_link' => 'Sign up',
|
|
],
|
|
'register' => [
|
|
'header' => 'Create a new account',
|
|
'has_account' => 'Already have an account?',
|
|
'login_link' => 'Sign in',
|
|
],
|
|
'forgot_password' => [
|
|
'header' => 'Forgot your password?',
|
|
'subheader' => 'No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.',
|
|
'back_to_login' => 'Back to sign in',
|
|
],
|
|
'reset_password' => [
|
|
'header' => 'Reset Password',
|
|
],
|
|
'verify_email' => [
|
|
'header' => 'Verify Email',
|
|
'subheader' => "Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn't receive the email, we will gladly send you another.",
|
|
'resend_link' => 'A new verification link has been sent to the email address you provided during registration.',
|
|
],
|
|
'confirm_password' => [
|
|
'header' => 'Confirm Password',
|
|
'subheader' => 'This is a secure area of the application. Please confirm your password before continuing.',
|
|
],
|
|
];
|
|
|