Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F11690927
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/resources/lang/en/emails.php b/resources/lang/en/emails.php
index 6d9ee02..39d13f4 100644
--- a/resources/lang/en/emails.php
+++ b/resources/lang/en/emails.php
@@ -1,43 +1,46 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| E-mail content
|--------------------------------------------------------------------------
|
| The following language lines are used in mails sent by Auth Grove.
|
*/
///
/// Master template
///
//The first line of every mail sent
'greetings' => 'Hi,',
//Signature
'signature-separator' => '--',
'signature' => 'Auth Grove',
///
/// Reset password mail
///
//Subject
'reset-password-subject' => 'Your password reset link',
//A paragraph of introduction explaining someone has visited /auth/recover
//to recover account access and asked to reset the password by e-mail.
'reset-password-intro' => 'Someone (we hope yourself) has requested to recover access to your account.',
+ //To prevent the case login is forgotten, we give it too.
+ 'reset-password-login' => 'Your login is:',
+
//A paragraph to explain the procedure. It will immediately be followed by
//a new line with the URL the user must go to achieve the reset.
'reset-password-callforaction' => 'To do so, you can reset your password at the following URL:',
//A paragraph to indicate who requested the action. It will immediately be
//followed by a new line with the presumed IP address of the requester.
'reset-password-origin' => "This was requested from the following IP address:",
];
diff --git a/resources/views/emails/password.blade.php b/resources/views/emails/password.blade.php
index 95575ff..0dd3218 100644
--- a/resources/views/emails/password.blade.php
+++ b/resources/views/emails/password.blade.php
@@ -1,14 +1,18 @@
@extends('emails.master')
@section('mail-content')
@lang('emails.reset-password-intro')
+@lang('emails.reset-password-login')
+
+{{ $user->username }}
+
@lang('emails.reset-password-callforaction')
{{ url('auth/reset/' . $token) }}
@lang('emails.reset-password-origin')
{{ \Keruald\get_remote_addr() }}
@endsection
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Fri, Sep 12, 19:34 (12 h, 38 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2978254
Default Alt Text
(2 KB)
Attached To
Mode
rGROVE Auth Grove
Attached
Detach File
Event Timeline
Log In to Comment