mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<html>
|
|
<body>
|
|
@if (!$invitationMessage)
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context":"http://schema.org",
|
|
"@type":"EmailMessage",
|
|
"description":"Confirm your Invoice Ninja account",
|
|
"action":
|
|
{
|
|
"@type":"ConfirmAction",
|
|
"name":"Confirm account",
|
|
"handler": {
|
|
"@type": "HttpActionHandler",
|
|
"url": "{{{ URL::to("user/confirm/{$user->confirmation_code}") }}}"
|
|
},
|
|
"publisher": {
|
|
"@type": "Organization",
|
|
"name": "Invoice Ninja",
|
|
"url": "{{{ NINJA_WEB_URL }}}"
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
@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> |