Skip to content

Commit 3ad5edc

Browse files
committed
adding a default password reminder e-mail.
1 parent df319a2 commit 3ad5edc

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

app/config/auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
'reminder' => array(
5858

59-
'email' => 'auth.password', 'table' => 'password_reminders',
59+
'email' => 'emails.auth.reminder', 'table' => 'password_reminders',
6060

6161
),
6262

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="utf-8">
5+
</head>
6+
<body>
7+
<h2>Password Reset</h2>
8+
9+
<div>
10+
To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
11+
</div>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)