mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Don't use @lang() it doesn't escape the string Found an issue where a string contained a single quote and broke the page. * fix regex errors * fix another style of mis-replacement * found another issue
12 lines
398 B
PHP
12 lines
398 B
PHP
@extends('layouts.librenmsv1')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="alert alert-danger col-md-6 col-md-offset-3"><i class="fa fa-fw fa-exclamation-circle" aria-hidden="true"></i>
|
|
{{ __('You are logged in as a demo account, this page is not accessible to you') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|