1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-25 18:57:14 +02:00
invoiceninja/resources/views/emails/confirm_html.blade.php

25 lines
589 B
PHP
Raw Normal View History

<!DOCTYPE html>
<html lang="{{ App::getLocale() }}">
<head>
<meta charset="utf-8">
</head>
2015-03-16 22:45:25 +01:00
<body>
2015-04-14 20:58:07 +02:00
@if (false && !$invitationMessage)
@include('emails.confirm_action', ['user' => $user])
2015-03-16 22:45:25 +01:00
@endif
<h1>{{ trans('texts.confirmation_header') }}</h1>
<p>
{{ $invitationMessage . trans('texts.confirmation_message') }}<br/>
2015-04-06 08:58:47 +02:00
<a href='{!! URL::to("user/confirm/{$user->confirmation_code}") !!}'>
{!! URL::to("user/confirm/{$user->confirmation_code}")!!}
2015-03-16 22:45:25 +01:00
</a>
<p/>
{{ trans('texts.email_signature') }}<br/>
{{ trans('texts.email_from') }}
</p>
</body>
</html>