1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 15:13:29 +01:00
invoiceninja/resources/views/migration/auth.blade.php

40 lines
1.5 KiB
PHP
Raw Normal View History

@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">
{{ csrf_field() }}
2020-12-10 15:04:59 +01:00
<div class="form-group">
2020-12-10 15:04:59 +01:00
<label for="email">{!! trans('texts.email_address') !!} *</label>
<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>
<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>
</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>
</div>
</div>
2020-03-12 08:42:31 +01:00
@stop