diff options
author | Camil Staps | 2015-05-13 13:43:16 +0200 |
---|---|---|
committer | Camil Staps | 2015-05-13 13:43:16 +0200 |
commit | 497549300ce8231f5b25c93a4f95aeb35baad027 (patch) | |
tree | f50e0dcf8120f7589826f9f2932f4d7d8f9ccfaf /src/views/emails/auth | |
parent | Fixed security issue: safer random token generator using openssl (diff) |
Password reminders start
Diffstat (limited to 'src/views/emails/auth')
-rw-r--r-- | src/views/emails/auth/reminder.blade.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/views/emails/auth/reminder.blade.php b/src/views/emails/auth/reminder.blade.php new file mode 100644 index 0000000..bd8ad22 --- /dev/null +++ b/src/views/emails/auth/reminder.blade.php @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <meta charset="utf-8"> +</head> +<body> +<h2>Password Reset</h2> + +<div> + To reset your password, use the following token:<br/> + {{{ $token }}} +</div> +</body> +</html> |