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

15 lines
411 B
PHP
Raw Normal View History

2021-03-10 02:51:08 +01:00
@component('email.template.master', ['design' => 'light', 'whitelabel' => false, 'company' => $company])
2020-10-27 16:04:28 +01:00
@slot('header')
@include('email.components.header', ['logo' => $logo])
@endslot
2020-10-27 16:04:28 +01:00
<p>{{ ctrans('texts.reset_password') }}</p>
2020-10-27 16:04:28 +01:00
<a href="{{ $link }}" target="_blank" class="button">
{{ ctrans('texts.reset') }}
</a>
2020-10-27 16:04:28 +01:00
<a href="{{ $link }}">{{ $link }}</a>
@endcomponent