snipe-it/resources/views/setup/done.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

21 lines
482 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;">
<div class="col-md-12">
<div class="alert alert-warning">
<i class="fa fa-check"></i>
Success! Your admin user has been added!
</div>
</div>
<p>Click here to go to your app login! <a href="{{ url('/') }}">{{ url('/') }}</a></p>
</div>
@stop