snipe-it/resources/views/setup/migrate.blade.php
Daniel Meltzer 13cf11368f Reformat all view files. (#3105)
* Reformat all view files.  Check for matching tags and rearrange to make everything line up.

* Fix regression on asset create where the log was no longer saved.
2016-12-27 12:03:47 -08:00

40 lines
907 B
PHP

@extends('layouts/setup')
{{-- Page title --}}
@section('title')
Create a User ::
@parent
@stop
{{-- Page content --}}
@section('content')
<div class="col-lg-12" style="padding-top: 20px;">
@if (trim($output)=='Nothing to migrate.')
<div class="col-md-12">
<div class="alert alert-warning">
<i class="fa fa-warning"></i>
There was nothing to migrate. Your database tables were already set up!
</div>
</div>
@else
<div class="col-md-12">
<div class="alert alert-success">
<i class="fa fa-check"></i>
Your database tables have been created
</div>
</div>
@endif
<p>Migration output: </p>
<pre>{{ $output }}</pre>
</div>
@stop
@section('button')
<form action="{{ route('setup.user') }}" method="GET">
<button class="btn btn-primary">Next: Create User</button>
</form>
@parent
@stop