diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 2aabc2ae82e3..ba884ab30e42 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2647,6 +2647,7 @@ $LANG = array( 'signature_on_pdf' => 'Show on PDF', 'signature_on_pdf_help' => 'Show the client signature on the invoice/quote PDF.', 'expired_white_label' => 'The white label license has expired', + 'return_to_login' => 'Return to Login', ); diff --git a/resources/views/clientauth/passwords/email.blade.php b/resources/views/clientauth/passwords/email.blade.php index 306ee92d3d92..dfd7f0bb9059 100644 --- a/resources/views/clientauth/passwords/email.blade.php +++ b/resources/views/clientauth/passwords/email.blade.php @@ -44,6 +44,12 @@ ->withAttributes(['class' => 'green']) ->large()->submit()->block() !!} +
+
+ {!! link_to('/client/login' . (request()->account_key ? '?account_key=' . request()->account_key : ''), trans('texts.return_to_login')) !!} +
+
+ {!! Former::close() !!}