-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
77 lines (58 loc) · 2.06 KB
/
Copy pathindex.php
File metadata and controls
77 lines (58 loc) · 2.06 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
<?php
session_start();
include_once 'funktion.php';
include_once 'db-files/db-conect.php';
?>
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neue Bibliothek</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/img/Favicon.ico" type="image/x-icon">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="js/load_books.js"></script>
<script src="js/search.js"></script>
<script src="js/load_genre.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<?php anzeige_kopfbereich(); ?>
<div id="overlay" style="display: none;"></div>
<?php login_out_window(); ?>
<section>
<div id="Datenbank" class="db-container">
<h2>Datenbank</h2>
<p>Hier sehen Sie alle Bücher, die zurzeit in der Datenbank enthalten sind</p>
<div id="Datenbank-Tabelle" class="db-table"></div>
</div>
</section>
<section>
<div id="Suche" class="search-container">
<h2>Buchsuche</h2>
<p>Suche nach Büchern, indem du den Titel, Autor oder ISBN eingibst</p>
<form id="searchForm">
<input type="text" id="searchQuery" name="searchQuery" placeholder="Titel, Autor oder ISBN">
<div class="button-container">
<select id="genreSelect" name="genreSelect">
<option value="">Alle Genres</option>
<!-- Die Genre-Optionen werden hier hinzugefügt -->
</select>
<button type="submit">Suchen</button>
</div>
</form>
<div id="searchResults" class="db-table"></div>
</div>
</section>
<section>
<?php
if (isset($_SESSION['username'])) {
include 'protected-index.php';
} else {
echo'<p> You have to Login to see more content </p>';
}
?>
</section>
</body>
</html>