<!DOCTYPE html>
<html lang="en-US">
	<head>
		<meta charset="utf-8">
	</head>
	<body>
		<div>
            <p>
                @php
                    $communityName = $communityName ?? 'IDHubs';
                    $documentTitle = $documentTitle ?? 'PDF Document';
                    $fileName = $fileName ?? '';
                @endphp
            </p>
            
            <p>
               You have been invited to sign a document on {{ $communityName }}.
            </p>
            
            
            <p>
                            Title: {{ $documentTitle }}<br /><br />
                            @if(!empty($fileName))
                                File name: {{ $fileName }}<br /><br />
                            @endif
              Document link: <a href="{{ $inviteUrl ?? '' }}">{{ $inviteUrl ?? '' }}</a>
            </p>
            
            <p>
                If you already have an account, please login using this invited email address.
            </p>
            
            <p>
               If you do not have an account, please sign up using the same email address and you will be redirected back to the document.
            </p>
            
               
            <!--<p>
                Login: <a href="{{ $loginUrl ?? '' }}">{{ $loginUrl ?? '' }}</a>
            </p>
            
            <p>    
                Sign up: <a href="{{ $registerUrl ?? '' }}">{{ $registerUrl ?? '' }}</a>
            </p>-->
            
            <p>   
               Thanks,<br />
               {{ $communityName }}
            </p>   
		</div>
	</body>
</html>