From d14b1e3825d776a23aa6c85c8b6c73d93bbea0bb Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 26 Jan 2021 19:57:39 -0800 Subject: [PATCH] Added better visual cues for login (#9051) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added better visual cues for login * Changed box header class to box-header with-border to match other screens * Since we have all.js now, added class=“minimal” to use icheck --- resources/lang/en/auth/general.php | 2 + resources/lang/en/general.php | 4 +- resources/views/auth/login.blade.php | 10 +-- .../views/auth/passwords/email.blade.php | 62 +++++++++++++++++-- .../views/auth/passwords/reset.blade.php | 8 +-- resources/views/layouts/basic.blade.php | 16 ++++- 6 files changed, 83 insertions(+), 19 deletions(-) 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 @@