mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 22:07:33 -05:00 
			
		
		
		
	Improved white label modal
This commit is contained in:
		
							parent
							
								
									b55a3226b7
								
							
						
					
					
						commit
						343d76744f
					
				
							
								
								
									
										
											BIN
										
									
								
								public/images/pro_plan/white_label_after.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/images/pro_plan/white_label_after.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 25 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								public/images/pro_plan/white_label_before.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/images/pro_plan/white_label_before.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 30 KiB  | 
@ -470,7 +470,7 @@ return array(
 | 
			
		||||
 | 
			
		||||
    'id_number' => 'ID Number',
 | 
			
		||||
    'white_label_link' => 'White label',
 | 
			
		||||
    'white_label_text' => 'Purchase a white label license for $'.WHITE_LABEL_PRICE.' to remove the Invoice Ninja branding from the top of the client pages.',
 | 
			
		||||
    'white_label_text' => 'Purchase a white label license for $'.WHITE_LABEL_PRICE.' to remove the Invoice Ninja branding from the client portal and help support our project.',
 | 
			
		||||
    'white_label_header' => 'White Label',
 | 
			
		||||
    'bought_white_label' => 'Successfully enabled white label license',
 | 
			
		||||
    'white_labeled' => 'White labeled',
 | 
			
		||||
@ -909,4 +909,8 @@ return array(
 | 
			
		||||
    'archived' => 'Archived',
 | 
			
		||||
    'untitled_account' => 'Untitled Company',
 | 
			
		||||
 | 
			
		||||
    'before' => 'Before',
 | 
			
		||||
    'after' => 'After',
 | 
			
		||||
 | 
			
		||||
    
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
@ -465,7 +465,7 @@ return array(
 | 
			
		||||
  'id_number' => 'ID Number',
 | 
			
		||||
 | 
			
		||||
  'white_label_link' => 'White label',
 | 
			
		||||
  'white_label_text' => 'Purchase a white label license for $'.WHITE_LABEL_PRICE.' to remove the Invoice Ninja branding from the top of the client pages.',
 | 
			
		||||
  'white_label_text' => 'Purchase a white label license for $'.WHITE_LABEL_PRICE.' to remove the Invoice Ninja branding from the client portal and help support our project.',
 | 
			
		||||
  'white_label_header' => 'White Label',
 | 
			
		||||
  'bought_white_label' => 'Successfully enabled white label license',
 | 
			
		||||
  'white_labeled' => 'White labeled',
 | 
			
		||||
 | 
			
		||||
@ -474,7 +474,7 @@ return array(
 | 
			
		||||
  'id_number' => 'ID Number',
 | 
			
		||||
 | 
			
		||||
  'white_label_link' => 'White label',
 | 
			
		||||
  'white_label_text' => 'Purchase a white label license for $'.WHITE_LABEL_PRICE.' to remove the Invoice Ninja branding from the top of the client pages.',
 | 
			
		||||
  'white_label_text' => 'Purchase a white label license for $'.WHITE_LABEL_PRICE.' to remove the Invoice Ninja branding from the client portal and help support our project.',
 | 
			
		||||
  'white_label_header' => 'White Label',
 | 
			
		||||
  'bought_white_label' => 'Successfully enabled white label license',
 | 
			
		||||
  'white_labeled' => 'White labeled',
 | 
			
		||||
 | 
			
		||||
@ -472,7 +472,7 @@ return array(
 | 
			
		||||
  'id_number' => 'ID Number',
 | 
			
		||||
 | 
			
		||||
  'white_label_link' => 'White label',
 | 
			
		||||
  'white_label_text' => 'Purchase a white label license for $'.WHITE_LABEL_PRICE.' to remove the Invoice Ninja branding from the top of the client pages.',
 | 
			
		||||
  'white_label_text' => 'Purchase a white label license for $'.WHITE_LABEL_PRICE.' to remove the Invoice Ninja branding from the client portal and help support our project.',
 | 
			
		||||
  'white_label_header' => 'White Label',
 | 
			
		||||
  'bought_white_label' => 'Successfully enabled white label license',
 | 
			
		||||
  'white_labeled' => 'White labeled',
 | 
			
		||||
 | 
			
		||||
@ -715,8 +715,18 @@
 | 
			
		||||
            <h4 class="modal-title" id="myModalLabel">{{ trans('texts.white_label_header') }}</h4>
 | 
			
		||||
          </div>
 | 
			
		||||
 | 
			
		||||
          <div style="background-color: #fff; padding:20px">
 | 
			
		||||
          <div class="panel-body">
 | 
			
		||||
            <p>{{ trans('texts.white_label_text')}}</p>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-md-6">
 | 
			
		||||
                    <h4>{{ trans('texts.before') }}</h4>
 | 
			
		||||
                    {!! HTML::image('images/pro_plan/white_label_before.png', 'before', ['width' => '100%']) !!}
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-md-6">
 | 
			
		||||
                    <h4>{{ trans('texts.after') }}</h4>
 | 
			
		||||
                    {!! HTML::image('images/pro_plan/white_label_after.png', 'after', ['width' => '100%']) !!}
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
 | 
			
		||||
          <div class="modal-footer" id="signUpFooter" style="margin-top: 0px">          
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user