diff --git a/resources/lang/en/auth/general.php b/resources/lang/en/auth/general.php index cabb5f8bec..33630310d4 100644 --- a/resources/lang/en/auth/general.php +++ b/resources/lang/en/auth/general.php @@ -9,5 +9,7 @@ return [ 'login_prompt' => 'Please Login', 'forgot_password' => 'I forgot my password', 'remember_me' => 'Remember Me', + 'username_help_top' => 'Enter your username to be emailed a password reset link.', + 'username_help_bottom' => 'Your username and email address may be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator.

Usernames without an associated email address will not be emailed a password reset link. ', ]; diff --git a/resources/lang/en/general.php b/resources/lang/en/general.php index ed624b9ccf..539a01a13f 100644 --- a/resources/lang/en/general.php +++ b/resources/lang/en/general.php @@ -243,5 +243,7 @@ 'i_accept' => 'I accept', 'i_decline' => 'I decline', 'sign_tos' => 'Sign below to indicate that you agree to the terms of service:', - 'clear_signature' => 'Clear Signature' + 'clear_signature' => 'Clear Signature', + 'show_help' => 'Show help', + 'hide_help' => 'Hide help', ]; diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index b424bee501..00b2ecbc60 100755 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -17,7 +17,7 @@
-
+

{{ trans('auth/general.login_prompt') }}

@@ -43,18 +43,18 @@
- + {!! $errors->first('username', '') !!}
- + {!! $errors->first('password', '') !!}
-
diff --git a/resources/views/auth/passwords/email.blade.php b/resources/views/auth/passwords/email.blade.php index a916d4c37e..3f858f471b 100644 --- a/resources/views/auth/passwords/email.blade.php +++ b/resources/views/auth/passwords/email.blade.php @@ -5,7 +5,9 @@ @section('content') @if ($snipeSettings->custom_forgot_pass_url) - {{ trans('auth/general.forgot_password') }} + + {{ trans('auth/general.forgot_password') }} + @else
@@ -13,18 +15,27 @@
- -