2014-06-30 00:26:38 -05:00
|
|
|
@extends('layouts.default')
|
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-8 col-md-8 col-sm-12">
|
|
|
|
<h1>Firefly<br/>
|
2014-07-03 14:31:32 -05:00
|
|
|
<small>Migration</small>
|
2014-06-30 00:26:38 -05:00
|
|
|
</h1>
|
|
|
|
<ol>
|
2014-07-03 14:31:32 -05:00
|
|
|
<li>Upload <code>firefly-export-****-**-**.json</code></li>
|
|
|
|
<li>Wait..</li>
|
|
|
|
<li>Done!</li>
|
2014-06-30 00:26:38 -05:00
|
|
|
</ol>
|
2014-07-03 14:31:32 -05:00
|
|
|
|
2014-06-30 00:26:38 -05:00
|
|
|
<p>
|
2014-07-03 14:31:32 -05:00
|
|
|
|
2014-06-30 00:26:38 -05:00
|
|
|
</p>
|
2014-07-03 14:31:32 -05:00
|
|
|
{{Form::open(['files' => true])}}
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="exportFile">Export file</label>
|
|
|
|
<input name="exportFile" type="file" id="exportFile">
|
|
|
|
<p class="help-block">Upload the export file here.</p>
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-info">Import</button>
|
|
|
|
{{Form::close()}}
|
2014-06-30 00:26:38 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|