mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
@extends('header')
|
|
|
|
@section('content')
|
|
@parent
|
|
@include('accounts.nav', ['selected' => ACCOUNT_MANAGEMENT])
|
|
|
|
@include('migration.includes.errors')
|
|
|
|
<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>We need to know the link of your application.</h4><br/>
|
|
<form action="{{ url('/migration/endpoint') }}" method="post" id="input-endpoint-form">
|
|
{{ csrf_field() }}
|
|
<div class="form-check">
|
|
<div class="form-group">
|
|
<label for="endpoint">Link</label>
|
|
<input type="text" class="form-control" name="endpoint" required placeholder="Example: https://myinvoiceninja.com">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="panel-footer text-right">
|
|
<button form="input-endpoint-form" class="btn btn-primary">{!! trans('texts.continue') !!}</button>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|