aboutsummaryrefslogtreecommitdiff
path: root/src/views/emails/auth
diff options
context:
space:
mode:
authorCamil Staps2015-05-13 13:43:16 +0200
committerCamil Staps2015-05-13 13:43:16 +0200
commit497549300ce8231f5b25c93a4f95aeb35baad027 (patch)
treef50e0dcf8120f7589826f9f2932f4d7d8f9ccfaf /src/views/emails/auth
parentFixed 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.php14
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>