1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/resources/views/emails/auth/reminder.blade.php

14 lines
269 B
PHP
Raw Normal View History

2015-03-16 22:45:25 +01:00
<!DOCTYPE html>
2015-06-16 00:15:09 +02:00
<html lang="{{App::getLocale()}}">
2015-03-16 22:45:25 +01:00
<head>
<meta charset="utf-8">
</head>
<body>
<h2>Password Reset</h2>
<div>
2017-05-09 18:46:52 +02:00
To reset your password, complete this form: {{ URL::to(SITE_URL . '/password/reset', array($token)) }}.
2015-03-16 22:45:25 +01:00
</div>
</body>
2017-05-09 18:46:52 +02:00
</html>