mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
That way the page can decide container-fluid or container Remove some unused blade templates as we have our own now
17 lines
464 B
PHP
17 lines
464 B
PHP
@extends('layouts.librenmsv1')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3>
|
|
<h1>External Authentication Failed.</h1>
|
|
<p>Please close your browser window to try again or contact your administrator.</p>
|
|
@if($message)
|
|
<br />
|
|
<p class="text-danger">{{ $message }}</p>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|