-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror_page.php
More file actions
95 lines (47 loc) · 1.02 KB
/
Copy patherror_page.php
File metadata and controls
95 lines (47 loc) · 1.02 KB
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
<?php
if(!isset($error_out)){
die('Error');
}
?>
<!DOCTYPE html>
<html lang="de">
<head>
<?php
include('tamplate/header.php');
?>
<title><?php echo $error_out; ?></title>
<style>
.sweet-alert p {
color: orange !important;
font-weight:900 !important;
}
</style>
</head>
<body id="errorpage">
<?php
$wrror_page=true;
include('tamplate/nav.php');
if($id[22]=='true'){
?>
<link rel="stylesheet" href="hosting/sweet-alert.css">
<script src="hosting/sweet-alert.min.js"></script>
<?php
}else{
?>
<link rel="stylesheet" href="https://cdn.rawgit.com/t4t5/sweetalert/v0.2.0/lib/sweet-alert.css">
<script src="https://cdn.rawgit.com/t4t5/sweetalert/v0.2.0/lib/sweet-alert.min.js"></script>
<?php
}
?>
<script>
setTimeout(function(){
swal("Error !!", "<?php echo $error_out; ?>", "error");
},200);
</script>
<?php
if(isset($footer_aktive) AND $footer_aktive=='true'){
include('tamplate/footer.php');
}
?>
</body>
</html>