-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (68 loc) · 2.29 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta
name="google-site-verification"
content="J51TCtyYzza0m-GDzCJUnKRyn61OtV7l_uNQJaGDx-k"
/>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Priflix</title>
<meta
name="description"
content="Priflix is a private Netflix-like website designed by Tejas Mali, offering a personalized streaming experience with a variety of content."
/>
<meta name="author" content="Tejas Mali" />
<meta
name="keywords"
content="private Netflix, streaming, movies, episodes, Priflix, Tejas Mali"
/>
<meta name="robots" content="index, follow" />
<link rel="stylesheet" href="/css/home.css" />
<link rel="stylesheet" href="/css/loader.css" />
<link rel="shortcut icon" href="/logo.jpg" type="image/x-icon" />
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#000000" />
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body class="index-page">
<style>
* {
-webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
-webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
outline: none !important;
}
.index-page .home-btn {
display: none;
}
</style>
<div class="loader-overlay">
<div class="progress-bar"></div>
<div class="loader"></div>
</div>
<div id="header"></div>
<!-- Movie Grid Placeholder -->
<div class="movie-grid" id="movie-grid"></div>
<div id="footer"></div>
<script src="/js/content-data.js"></script>
<script src="/js/script.js"></script>
<script src="js/pwa-app request.js"></script>
<script>
// Check if the user is logged in by reading localStorage
if (localStorage.getItem('loggedIn') !== 'true') {
// Redirect to the login page if not logged in
window.location.href = 'access.html';
}
</script>
</body>
</html>