-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
403.php
90 lines (68 loc) · 2.55 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
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
81
82
83
84
85
86
87
88
89
90
<?php
if (isset($_GET)) {
if (isset($_GET['lang']) && !empty($_GET['lang'])) {
setcookie('lang', $_GET['lang'], time() + 60 * 60 * 24 * 30);
}
}
include_once ('lang.php');
if (isset($_GET['lang'])) {
header('Location: ' . $_SERVER['PHP_SELF']);
}
?>
<!DOCTYPE html>
<html lang="<?= $lang; ?>" class="bg-[#000020] text-white">
<head>
<title><?= Error; ?> 403 - NowPlaying</title>
<link rel="icon" type="image/png" href="assets/images/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="NowPlaying is a smooth Spotify Connect visualizer, updating in real-time and with playback support." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@busybox11" />
<meta name="twitter:image" content="https://<?= $_SERVER['SERVER_NAME']; ?>/assets/images/favicon.png" />
<meta property="og:title" content="NowPlaying" />
<meta property="og:type" content="website" />
<meta property="og:description"
content="NowPlaying is a smooth Spotify Connect visualizer, updating in real-time and with playback support." />
<meta property="og:image" content="https://<?= $_SERVER['SERVER_NAME']; ?>/assets/images/favicon.png" />
<meta name="theme-color" content="#23a92a" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Outfit:[email protected]&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com/"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'sans': ['Outfit', 'sans-serif']
},
}
}
}
</script>
<?php
require_once ('assets/analytics.php');
echo getAnalyticsScript();
?>
</head>
<body class="flex flex-col h-screen px-4 py-auto gap-8 items-center justify-center text-center">
<div class="flex flex-col items-center justify-center">
<img src="assets/images/favicon.png" alt="Logo" width="100px" height="100px" class="mb-4">
<h1 class="text-3xl lg:text-4xl font-bold"><?= Error; ?> 403</h1>
<h2 class="text-xl lg:text-2xl font-light mb-2"><?= IndexError403; ?></h2>
</div>
<a href="javascript:window.history.back()"
class="bg-[#15883D] px-12 py-3 rounded-full text-lg tracking-wide active:scale-95 transition"><?= IndexGoBack; ?></a>
</body>
</html>
<?php
if (isset($_GET)) {
if (isset($_GET['lang']) && !empty($_GET['lang'])) {
setcookie('lang', $_GET['lang'], time() + 60 * 60 * 24 * 30);
}
}
include_once ('lang.php');
if (isset($_GET['lang'])) {
header('Location: ' . $_SERVER['PHP_SELF']);
}
?>