This repository was archived by the owner on Jun 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path403.php
52 lines (45 loc) · 1.53 KB
/
403.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
#
#
# SugoiDesu! (https://github.com/ilsubyeega/sugoidesu)
# This File is Licensed as GNU Affero General Public License v3.0
# Find out more: https://github.com/ilsubyeega/sugoidesu/blob/master/LICENSE
#
#
#
include "inc/include.php";
# Page Settings
$page['title'] = "Error";
$page['description'] = "idk why i am doing";
$navbar_active[1] = $config['global']['servername'];
$navbar_active[2] = "Error";
#$navbar_active[3] = "";
# Header Settings (If is not sets, it won't be shown)
$header['background_image'] = "/assets/img/background/guineapigbridge.jpg";
$header['title'] = "Error (Not Found)";
$header['description'] = "";
# Web Content
include "inc/header.php";
include "inc/navbar.php";
include "inc/base1.php";
?>
<div class="card">
<div class="card-header">
<h4>No Permission</h4>
</div>
<div class="card-body">
<div class="empty-state" data-height="400" style="height: 400px;">
<div class="empty-state-icon bg-danger">
<i class="fas fa-times"></i>
</div>
<h2>403 Forbidden</h2>
<p class="lead">
You dont enough permission to do that.
</p>
<a href="" class="btn btn-warning mt-4">Try Again</a>
<a href="/" class="mt-4 bb">Go to Home</a>
</div>
</div>
</div>
<?php include "inc/footer.php";
?>