1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-28 04:42:29 +01:00
Pterodactyl-Panel/resources/themes/pterodactyl/errors/404.blade.php

32 lines
1.2 KiB
PHP
Raw Normal View History

2017-09-26 04:43:01 +02:00
{{-- Pterodactyl - Panel --}}
2017-01-24 23:57:08 +01:00
{{-- Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com> --}}
2017-01-18 02:28:47 +01:00
2017-09-26 04:43:01 +02:00
{{-- This software is licensed under the terms of the MIT license. --}}
{{-- https://opensource.org/licenses/MIT --}}
2017-01-18 02:28:47 +01:00
@extends('layouts.error')
@section('title')
@lang('base.errors.404.header')
@endsection
@section('content-header')
@endsection
@section('content')
<!-- This is why we don't let Pterodactyl's make links... fat fingered dinosaurs... -->
<div class="row">
<div class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 col-xs-12">
<div class="box box-warning">
<div class="box-body text-center">
<h1 class="text-yellow" style="font-size: 160px !important;font-weight: 100 !important;">404</h1>
<p class="text-muted">@lang('base.errors.404.desc')</p>
</div>
<div class="box-footer with-border">
<a href="{{ URL::previous() }}"><button class="btn btn-warning">&larr; @lang('base.errors.return')</button></a>
<a href="/"><button class="btn btn-default">@lang('base.errors.home')</button></a>
</div>
</div>
</div>
</div>
@endsection