mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
21 lines
503 B
PHP
21 lines
503 B
PHP
<html>
|
|
<body>
|
|
@if (false && !$invitationMessage)
|
|
@include('emails.confirm_action', ['user' => $user])
|
|
@endif
|
|
|
|
<h1>{{ trans('texts.confirmation_header') }}</h1>
|
|
|
|
<p>
|
|
{{ $invitationMessage . trans('texts.confirmation_message') }}<br/>
|
|
<a href='{!! URL::to("user/confirm/{$user->confirmation_code}") !!}'>
|
|
{!! URL::to("user/confirm/{$user->confirmation_code}")!!}
|
|
</a>
|
|
<p/>
|
|
|
|
{{ trans('texts.email_signature') }}<br/>
|
|
{{ trans('texts.email_from') }}
|
|
</p>
|
|
|
|
</body>
|
|
</html> |