1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/resources/views/email/billing/passwordless-login.blade.php

20 lines
967 B
PHP
Raw Normal View History

2021-06-12 23:12:06 +02:00
@component('email.template.client', ['logo' => $logo, 'settings' => $settings, 'company' => $company])
2021-06-09 17:07:41 +02:00
<div class="center">
<h1>{{ ctrans('texts.login_link_requested_label') }}</h1>
<p>{{ ctrans('texts.login_link_requested') }}</p>
2021-03-31 18:10:44 +02:00
<!-- <a href="{{ $url }}" target="_blank" class="button"> {{ ctrans('texts.login')}}</a> -->
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr style="border: 0 !important; ">
<td class="new_button" style="padding: 12px 18px 12px 18px; border-radius:5px;" align="center">
<a href="{{ $url }}") }}" target="_blank" style="border: 0 !important;font-size: 18px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; text-decoration: none; display: inline-block;">
{{ ctrans('texts.login')}}
</a>
</td>
</tr>
</table>
2021-06-09 17:07:41 +02:00
</div>
2021-03-31 18:10:44 +02:00
@endcomponent