mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
38 lines
1.6 KiB
PHP
38 lines
1.6 KiB
PHP
@extends('header')
|
|
|
|
@section('content')
|
|
@parent
|
|
@include('accounts.nav', ['selected' => ACCOUNT_MANAGEMENT])
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.welcome_to_the_new_version') !!}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<h4>In order to start the migration, we need to know where do you want to migrate.</h4><br/>
|
|
<form action="/migration/type" method="post" id="select-type-form">
|
|
{{ csrf_field() }}
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="option" id="option1" value="0" checked>
|
|
<label class="form-check-label" for="option1">
|
|
Hosted
|
|
</label>
|
|
<p>If you chose 'hosted', we will migrate your data to official Invoice Ninja servers & take care of server handling.</p>
|
|
</div>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="option" id="option2" value="1">
|
|
<label class="form-check-label" for="option2">
|
|
Self-hosted
|
|
</label>
|
|
<p>By choosing the 'self-hosted', you are the one in charge of servers.</p>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="panel-footer text-right">
|
|
<button onclick="document.getElementById('select-type-form').submit();" class="btn btn-primary">{!! trans('texts.continue') !!}</button>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|