1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-30 05:07:11 +02:00
invoiceninja/resources/views/email/auth/password-reset.blade.php

20 lines
662 B
PHP
Raw Normal View History

@component('email.template.master', ['design' => 'light', 'whitelabel' => false])
2020-10-27 16:04:28 +01:00
@slot('header')
@include('email.components.header', ['logo' => 'https://www.invoiceninja.com/wp-content/uploads/2015/10/logo-white-horizontal-1.png'])
@endslot
2020-10-27 16:04:28 +01:00
<p>You are receiving this email because we received a password reset request for your account.</p>
2020-10-27 16:04:28 +01:00
<a href="{{ $link }}" target="_blank" class="button">
Reset Password
</a>
2020-10-27 16:04:28 +01:00
<p>
If youre having trouble clicking the "Reset Password" button, copy and paste the URL below into your web
browser:
</p>
2020-10-27 16:04:28 +01:00
<a href="{{ $link }}">{{ $link }}</a>
@endcomponent