mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
25 lines
580 B
PHP
25 lines
580 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ App::getLocale() }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
@if (!$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> |