1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/resources/views/email/auth/verify.blade.php

22 lines
1.0 KiB
PHP
Raw Normal View History

2021-06-12 23:12:06 +02:00
@component('email.template.admin', ['logo' => 'https://www.invoiceninja.com/wp-content/uploads/2015/10/logo-white-horizontal-1.png', 'settings' => $settings])
2021-06-07 18:06:34 +02:00
<div class="center">
<p>{{ ctrans('texts.confirmation_message') }}</p>
<!-- <a href="{{ url("/user/confirm/{$user->confirmation_code}") }}" target="_blank" class="button">
2021-06-07 18:06:34 +02:00
{{ ctrans('texts.confirm') }}
</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("/user/confirm/{$user->confirmation_code}") }}" 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.confirm') }}
</a>
</td>
</tr>
</table>
2021-06-07 18:06:34 +02:00
</div>
@endcomponent