-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
165 lines (145 loc) · 5.87 KB
/
index.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage</title>
<link rel="icon" href="img/booking.png">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<style>
/*tutto lo stile sottostante permette al footer di rimanere in basso nella pagina*/
html
{
height: 100%;
}
body
{
display: flex;
flex-direction: column;
min-height: 100%;
}
footer
{
width: 100%;
padding: 1em 0;
margin-top: auto;
}
/*****************/
/*stile dei link presenti nella barra di navigazione*/
/*submenu profilo*/
#opzioni_profilo
{
position: absolute;
top: 3.5em;
display: none;
flex-direction: column;
background-color: rgb(13, 110, 253);
}
#logout a,
#impostazioni a
{
display: inline-block;
width: 100%;
padding: 1em;
}
#login a,
#registrazione a,
#prenotazione a
{
display: inline-block;
padding: 1em;
}
#login:hover,
#registrazione:hover,
#prenotazione:hover
{
background-color: red;
cursor: pointer;
}
#logout:hover,
#impostazioni:hover
{
background-color: red;
}
#login:hover ~ #opzioni_profilo,
#opzioni_profilo:hover
{
display: flex;
}
/**********/
/*submenu recensioni*/
#recensioni:hover,
#scrivi_recensione:hover,
#vedi_recensioni:hover
{
background-color: red;
cursor: pointer;
}
#recensioni a,
#scrivi_recensione a,
#vedi_recensioni a
{
display: inline-block;
padding: 1em;
}
#opzioni_recensioni
{
position: absolute;
top: 3.5em;
right: 0;
display: none;
flex-direction: column;
background-color: rgb(13, 110, 253);
z-index: 1;
}
#recensioni:hover ~ #opzioni_recensioni,
#opzioni_recensioni:hover
{
display: flex;
}
/*******************/
</style>
<script>
if (window.history.replaceState) //evita di ricevere messaggio errore dopo refresh pagina
window.history.replaceState(null, null, window.location.href);
</script>
</head>
<body class="bg-info">
<nav id="barra_di_navigazione" style="position: relative;" class="d-flex bg-primary">
<ul class="d-flex list-unstyled ms-auto mt-auto mb-auto">
<?php
session_start();
if(isset($_SESSION['email'])){
print('<li id="login" style="color: white; font-weight: bold"><a style="color: white; font-weight: bold" class="text-decoration-none">');
print($_SESSION['email']);
print('</a></li><div id="opzioni_profilo"><div id="impostazioni"><a style="color: white; font-weight: bold" class="text-decoration-none" href="impostazioni.php">Impostazioni</a></div><div id="logout"><a style="color: white; font-weight: bold" class="text-decoration-none" href="php/logout.php">Logout</a></div></div>');
}
else print('<li id="login"><a style="color: white; font-weight: bold" class="text-decoration-none" href="login.php">Login</a></li>');
?>
<li id="registrazione"><a style="color: white; font-weight: bold" class="text-decoration-none" href="registrazione.php">Registrati</a></li>
<li id="prenotazione"><a style="color: white; font-weight: bold" class="text-decoration-none" href="prenotazione.php">Prenota ora</a></li>
<li id="recensioni"><a style="color: white; font-weight: bold" class="text-decoration-none">Recensioni</a></li>
<div id="opzioni_recensioni">
<div id="vedi_recensioni"><a style="color: white; font-weight: bold" class="text-decoration-none" href="vedi_recensioni.php">Vedi recensioni</a></div>
<div id="scrivi_recensione"><a style="color: white; font-weight: bold" class="text-decoration-none" href="scrivi_recensione.php">Scrivi recensione</a></div>
</div>
</ul>
</nav>
<?php
if(isset($_SESSION['error_message'])){
print('<span style="position: absolute; right: 1em; top: 4em; color: red; font-weight: bold">');
print($_SESSION['error_message']);
print('</span>');
unset($_SESSION['error_message']);
}
?>
<h1 class="text-center text-white mt-5 mb-5">BOOKING SYSTEM</h1>
<img src="img/immagine_homepage.jpg" style="display: block; width: 40em; height: auto; margin: 0 auto" alt="impossibile da caricare">
<h2 class="text-center text-white mt-5">Prenotare non è mai stato così facile</h3>
<footer class="d-flex gap-4 bg-primary text-white"><span style="margin-left: 1em;">©zZMarza</span><span>©omarjab01</span></footer>
<!-- Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
</body>
</html>