mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 20:37:29 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			741 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			741 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
@extends('emails.master_user')
 | 
						|
 | 
						|
@section('markup')
 | 
						|
    @if (!$invitationMessage)
 | 
						|
        @include('emails.confirm_action', ['user' => $user])
 | 
						|
    @endif
 | 
						|
@stop
 | 
						|
 | 
						|
@section('body')
 | 
						|
    <h2>{{ trans('texts.confirmation_header') }}</h2>
 | 
						|
    <div>
 | 
						|
        {{ $invitationMessage . trans('texts.button_confirmation_message') }}
 | 
						|
    </div>
 | 
						|
     
 | 
						|
    <div>
 | 
						|
        <center>
 | 
						|
            @include('partials.email_button', [
 | 
						|
                'link' => URL::to("user/confirm/{$user->confirmation_code}"),
 | 
						|
                'field' => 'confirm',
 | 
						|
                'color' => '#36c157',
 | 
						|
            ])
 | 
						|
        </center>
 | 
						|
    </div>
 | 
						|
     
 | 
						|
    <div>
 | 
						|
        {{ trans('texts.email_signature') }}<br/>
 | 
						|
        {{ trans('texts.email_from') }}
 | 
						|
    </div>
 | 
						|
@stop |