-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibrary.php
More file actions
78 lines (74 loc) · 3.55 KB
/
Library.php
File metadata and controls
78 lines (74 loc) · 3.55 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
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
<?php
require 'System/Global/AccountConnect.php';
require 'System/Global/IsPanel.php';
?>
<head>
<!-- Настройки -->
<title>Library</title>
<link rel="icon" type="iconsite" href="MediaArchive/System/iconsite.png">
<meta property="og:title" content="WartexStore - game for everyone.">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Интерфейс -->
<link rel="stylesheet" href="System/UI/Style.css" id="theme">
<link rel="stylesheet" href="System/UI/MobileStyle.css" media="(max-width: 768px)">
<!-- Подключение шрифтов -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Скрипты -->
<script src="System/JavaScript/index.js"></script>
</head>
<body>
<header>
<img src="MediaArchive/System/iconsite.png">
<a href="index.php" class="desktop-only">STORE</a>
<a href="library.php" class="active desktop-only">LIBRARY</a>
<?php if (!empty($PanelRay) && in_array(1, $PanelRay)) { ?>
<a href="Panel.php" class="desktop-only">PANEL</a>
<?php } ?>
<div class="search-container">
<input type="text" id="searchInput" placeholder="Поиск">
</div>
<div>
<?php if($Account): ?>
<a href="Profile.php">
<div class="PROFICO">
<img src="https://elemsocial.com/Content/Avatars/<?php echo $Account['Avatar']; ?>">
</div>
</a>
<?php else: ?>
<a href="Auth.php">
<img class="PROFICO" src="https://elemsocial.com/Content/Posts/Images/Image_1c562402a419ac27ddaf89dd4ee72001.jpeg" alt="Описание изображения">
</a>
<?php endif;?>
</div>
</header>
<div id="comingsoon" class="comingsoon">Coming soon<span class="dot-animation"></span></div>
<div class="mobile-nav">
<a href="index.php" class="nav-item"><i class="fas fa-shopping-cart fa-lg"></i> Store</a>
<a href="Library.php" class="nav-item active"><i class="fas fa-book-open fa-lg"></i> Library</a>
<a href="Library.php" class="nav-item"><i class="fas fa-cog fa-lg"></i> Settings</a>
<?php if (!empty($PanelRay) && in_array(1, $PanelRay)) { ?>
<a href="Panel.php" class="nav-item"><i class="fas fa-tools fa-lg"></i> Panel</a>
<?php } ?>
</div>
</body>
<script>
const text = "Coming soon";
let dots = 1;
function updateText() {
const element = document.getElementById("comingsoon");
const newText = text + ".".repeat(dots);
element.textContent = newText;
dots = (dots % 3) + 1; // Increment dots from 1 to 3 and then back to 1
}
// Update the text every second
setInterval(updateText, 1000);
</script>