diff --git a/resources/lang/en/auth.php b/resources/lang/en/auth.php index 436734816..1065945c0 100644 --- a/resources/lang/en/auth.php +++ b/resources/lang/en/auth.php @@ -26,6 +26,8 @@ return [ 'remember_me' => 'Remember Me', 'ldap_email_hint' => 'Please enter an email to use for this account.', 'create_account' => 'Create Account', + 'already_have_account' => 'Already have an account?', + 'dont_have_account' => 'Don\'t have an account?', 'social_login' => 'Social Login', 'social_registration' => 'Social Registration', 'social_registration_text' => 'Register and sign in using another service.', diff --git a/resources/views/auth/forms/login/standard.blade.php b/resources/views/auth/forms/login/standard.blade.php index 0e580943e..ea63cf7ac 100644 --- a/resources/views/auth/forms/login/standard.blade.php +++ b/resources/views/auth/forms/login/standard.blade.php @@ -8,8 +8,5 @@ @include('form.password', ['name' => 'password', 'tabindex' => 1]) {{ trans('auth.forgot_password') }} - @if(setting('registration-enabled', false)) - • {{ trans('auth.sign_up') }} - @endif diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index 6e3f12a85..35c117800 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -6,7 +6,7 @@
 
-
+

{{ title_case(trans('auth.log_in')) }}

@@ -25,6 +25,7 @@ 'label' => trans('auth.remember_me'), ])
+
@@ -43,6 +44,13 @@
@endforeach @endif + + @if(setting('registration-enabled', false)) +
+
+ {{ trans('auth.dont_have_account') }} +
+ @endif diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php index d1e69e0a0..38904f63b 100644 --- a/resources/views/auth/register.blade.php +++ b/resources/views/auth/register.blade.php @@ -5,7 +5,7 @@
 
-
+

{{ title_case(trans('auth.sign_up')) }}

@@ -28,7 +28,7 @@