Remove beta notice

This commit is contained in:
Dane Everitt 2018-02-17 16:48:02 -06:00
parent e9680fc29c
commit 049a539d46
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 0 additions and 40 deletions

View file

@ -205,9 +205,6 @@
</section> </section>
</aside> </aside>
<div class="content-wrapper"> <div class="content-wrapper">
<section class="content-header">
@include('partials/_internal/beta')
</section>
<section class="content-header"> <section class="content-header">
@yield('content-header') @yield('content-header')
</section> </section>
@ -243,34 +240,6 @@
</div> </div>
Copyright &copy; 2015 - {{ date('Y') }} <a href="https://pterodactyl.io/">Pterodactyl Software</a>. Copyright &copy; 2015 - {{ date('Y') }} <a href="https://pterodactyl.io/">Pterodactyl Software</a>.
</footer> </footer>
<aside class="control-sidebar control-sidebar-dark">
<div class="tab-content">
<ul class="control-sidebar-menu">
{{-- @todo replace this with better logic, or just remove it entirely? --}}
{{--@foreach (Auth::user()->access(null)->get() as $s)--}}
{{--<li>--}}
{{--<a--}}
{{--@if(isset($server) && isset($node))--}}
{{--@if($server->uuidShort === $s->uuidShort)--}}
{{--class="active"--}}
{{--@endif--}}
{{--@endif--}}
{{--href="{{ route('server.index', $s->uuidShort) }}">--}}
{{--@if($s->owner_id === Auth::user()->id)--}}
{{--<i class="menu-icon fa fa-user bg-blue"></i>--}}
{{--@else--}}
{{--<i class="menu-icon fa fa-user-o bg-gray"></i>--}}
{{--@endif--}}
{{--<div class="menu-info">--}}
{{--<h4 class="control-sidebar-subheading">{{ $s->name }}</h4>--}}
{{--<p>{{ $s->username }}</p>--}}
{{--</div>--}}
{{--</a>--}}
{{--</li>--}}
{{--@endforeach--}}
</ul>
</div>
</aside>
<div class="control-sidebar-bg"></div> <div class="control-sidebar-bg"></div>
</div> </div>
@section('footer-scripts') @section('footer-scripts')

View file

@ -1,9 +0,0 @@
@section('beta-notice')
<div class="row">
<div class="col-xs-12">
<div class="alert alert-warning no-margin-bottom">
<i class="fa fa-warning"></i> You are running a beta version of Pterodactyl Panel. Not all features are complete and bugs should be expected. Please report any bugs on <a href="https://discord.gg/NgqGpmS">Discord</a> or via our <a href="https://github.com/Pterodactyl/Panel/issues/new">GitHub Issue Tracker</a>.
</div>
</div>
</div>
@show