Files
librenms-librenms/resources/views/install/user-created.blade.php

13 lines
313 B
PHP
Raw Normal View History

2020-06-06 17:03:32 -05:00
@extends('layouts.install')
@section('content')
<div class="row">
2020-06-07 14:53:40 -05:00
<div class="col-12 text-center p-5">
2020-06-07 00:03:57 -05:00
<h4>
2020-06-07 10:44:11 -05:00
<i class="fa fa-2x fa-user-circle align-middle"></i>
2020-06-06 17:03:32 -05:00
<strong>{{ $user->username }}</strong>
2020-06-07 00:03:57 -05:00
</h4>
2020-06-06 17:03:32 -05:00
</div>
</div>
@endsection