mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
14 lines
581 B
PHP
14 lines
581 B
PHP
@component('email.template.master', ['design' => 'light', 'settings' => $settings])
|
|
|
|
@slot('header')
|
|
@include('email.components.header', ['logo' => 'https://www.invoiceninja.com/wp-content/uploads/2015/10/logo-white-horizontal-1.png'])
|
|
@endslot
|
|
|
|
<h1>{{ ctrans('texts.migration_completed')}}</h1>
|
|
<p>{{ ctrans('texts.migration_completed_description')}}</p>
|
|
|
|
<a href="{{ url('/') }}" target="_blank" class="button">{{ ctrans('texts.account_login')}}</a>
|
|
|
|
<p>{{ ctrans('texts.email_signature')}}<br/> {{ ctrans('texts.email_from') }}</p>
|
|
@endcomponent
|