2020-02-24 22:17:16 +01:00
|
|
|
@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">
|
2020-12-10 15:04:59 +01:00
|
|
|
<h4>{!! trans('texts.migration_auth_label') !!}</h4><br/>
|
2020-10-05 09:50:32 +02:00
|
|
|
<form action="{{ url('/migration/auth') }}" method="post" id="auth-form">
|
2020-02-24 22:17:16 +01:00
|
|
|
{{ csrf_field() }}
|
2020-12-10 15:04:59 +01:00
|
|
|
|
2020-02-24 22:17:16 +01:00
|
|
|
<div class="form-group">
|
2020-12-10 15:04:59 +01:00
|
|
|
<label for="email">{!! trans('texts.email_address') !!} *</label>
|
2020-02-24 22:17:16 +01:00
|
|
|
<input type="email" name="email" class="form form-control">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
2020-12-10 15:04:59 +01:00
|
|
|
<label for="password">{!! trans('texts.password') !!} *</label>
|
2020-02-24 22:17:16 +01:00
|
|
|
<input type="password" name="password" class="form form-control">
|
|
|
|
</div>
|
2020-12-10 15:04:59 +01:00
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="api_secret">{!! trans('texts.api_secret') !!}</label>
|
|
|
|
<input type="api_secret" name="api_secret" class="form form-control">
|
|
|
|
<small>{!! trans('texts.migration_api_secret_notice') !!}</small>
|
|
|
|
</div>
|
2020-02-24 22:17:16 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="panel-footer text-right">
|
2020-10-05 09:50:32 +02:00
|
|
|
<button form="auth-form" class="btn btn-primary">{!! trans('texts.continue') !!}</button>
|
2020-02-24 22:17:16 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-03-12 08:42:31 +01:00
|
|
|
@stop
|