adding a default password reminder e-mail.

This commit is contained in:
Taylor Otwell 2013-02-08 14:49:12 -06:00
parent df319a2178
commit 3ad5edcc10
2 changed files with 14 additions and 1 deletions

View File

@ -56,7 +56,7 @@
'reminder' => array(
'email' => 'auth.password', 'table' => 'password_reminders',
'email' => 'emails.auth.reminder', 'table' => 'password_reminders',
),

View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
</head>
<body>
<h2>Password Reset</h2>
<div>
To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
</div>
</body>
</html>