-
Notifications
You must be signed in to change notification settings - Fork 1
/
error.php
80 lines (49 loc) · 1.97 KB
/
error.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE HTML>
<html lang="de">
<head>
<title>Fehler - Devmarkt</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.png">
<link rel="stylesheet" href="assets/css/style.css">
<meta charset="utf-8"/>
<meta name="description" content="Interface des Devmarktes für den DevCord-Discord. Hier kannst du Anfragen in den Devmarkt schicken, die vor Veröffentlichung geprüft werden."/>
<meta name="author" content="T1Il"/>
<meta name="copyright" content="T1Il"/>
<meta property="og:title" content="DevCord Devmarkt für Developer und Serverbetreiber"/>
<meta property="og:description" content="Interface des Devmarktes für den DevCord-Discord. Hier kannst du Anfragen in den Devmarkt schicken, die vor Veröffentlichung geprüft werden."/>
<meta property="og:site_name" content="DevCord Devmarkt"/>
</head>
<body>
<div class="form">
<div id="s">
<h3 id="success" style="opacity: 0;left: 100%;">❌</h3>
<h3 id="text" class="success" style="opacity: 0;left: 90%;">Da ist was schiefgelaufen....</h3>
<?php
if(isset($_GET['error'])) {
?>
<br>
<br>
<br>
<br>
<p class="success" style="display: block">Bitte melde folgenden Fehler an Till#6638: <strong><code style="font-family: 'monospace';"><?php echo testInput($_GET['error']); ?></code></strong></p>
<?php
}
?>
</div>
</div>
</body>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script>
$(window).ready(function() {
$("#success").animate({left: '25px', width: '25%', height: '150px', opacity: "1"}, 500);
$("#text").animate({left: '30px', opacity: "1", 'margin-right': '40%', 'margin-top': '11%'}, 500);
});
</script>
</html>
<?php
function testInput($data) {
return htmlspecialchars(stripslashes(trim($data)));
}
?>