-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.php
More file actions
31 lines (25 loc) · 945 Bytes
/
library.php
File metadata and controls
31 lines (25 loc) · 945 Bytes
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
<?php
include 'D:\Software\xampp\htdocs\TestingGround2\system.php';
include 'D:\Software\xampp\htdocs\TestingGround2\event.php';
System::sessionStart();
System::setContentTitle("Библиотека");
System::getPageHeader();
if (isset($_SESSION['isLogged']) === true) {
?>
<div class="library-folder">
<a href="os-folder.php" ><img src="img/other/folder_closed.png" width="96" height="96" /><br />
<div class="folder-name">Операционни <br />Системи</div></a>
</div>
<div class="library-folder">
<a href="" ><img src="img/other/folder_closed.png" width="96" height="96" /><br />
<div class="folder-name">Други</div></a>
</div>
<div class="library-folder">
<img src="img/web/tomster-under-construction.png" width="96" height="96" /><br />
<div class="folder-name">Under Construction</div>
</div>
<?php
} else {
Event::getLibraryLoginError();
}
System::getPageFooter();