-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
214 lines (200 loc) · 9.74 KB
/
home.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?php
ob_start(); //ARMAZENA MEUS DADOS EM CACHE
session_start(); //INICIA A SESSÃO
if(!isset($_SESSION['loginUser']) && (!isset($_SESSION['senhaUser']))){
header("Location: home.php?acao=negado");
exit;
}
include_once('sair.php')
?>
<!DOCTYPE html>
<html lang="pt-br">
<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">
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
<script src="https://kit.fontawesome.com/1e32b8079d.js" crossorigin="anonymous"></script>
<script src="js/components/footer.js"></script>
<link rel="stylesheet" href="styles/style.css">
<title>Multimeios Digital | Home</title>
</head>
<body class="bg-white text-gray-900 tracking-wide">
<?php
include_once('config/conexao.php');
$select = "SELECT cateLivro FROM livros";
try{
$resultado = $conect->prepare($select);
$resultado->execute();
$contar = $resultado->rowCount();
if($contar > 0){
while($show = $resultado->FETCH(PDO::FETCH_OBJ)){
}
}else{
echo 'NÃO DEU CERTO';
}
}catch(PDOException $e){
echo '<strong>ERRO DE PDO= </strong>'.$e->getMessage();
}
?>
<header class="w-full bg-white shadow-xl fixed md:relative top-0 z-40">
<nav class="container mx-auto lg:w-5xl p-4 h-16 flex items-center text-white">
<ul>
<li class="relative">
<div class="flex items-center gap-1 cursor-pointer" >
<img class="w-10 rounded-full" src="assets/avatar.jpg">
<p class="text-gray-900 font-medium text-sm"><?php echo $_SESSION['loginUser']?></p>
<img src="assets/icons/dropdown-arrow.svg" onclick="dropdown()">
</div>
<ul id="drop" class="absolute border border-gray-100 bg-white shadow-2xl w-full p-2 mt-1.5 rounded-lg scale-0 transition">
<li class="text-gray-600 text-sm hover:text-green-500"><a href="?sair">Sair</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<section>
<div class="container mx-auto p-4 mt-16 lg:w-5xl">
<p class="text-sm mb-2 md:text-base font-semibold text-blue-500">E.E.E.P José Maria Falcão</p>
<h1 class="text-3xl md:text-5xl lg:text-7xl font-bold mb-4">Olá <?php echo $_SESSION['loginUser']?></h1>
<h2 class="text-xl mb-8 font-medium text-gray-500">Seja bem-vindo(a) a Multimeios digital!</h2>
</div>
</section>
<section class="aside">
<div class="container mx-auto p-4 lg:w-5xl">
<div class="grid gap-4 mb-20">
<div class="flex gap-1">
<img src="assets/icons/check-list.svg" alt="">
<p>Acesse de qualquer lugar</p>
</div>
<div class="flex gap-1">
<img src="assets/icons/check-list.svg" alt="">
<p>Garanta seu livro na palma da mão</p>
</div>
<div class="flex gap-1">
<img src="assets/icons/check-list.svg" alt="">
<p>Navegue e encontre o que deseja</p>
</div>
<div class="flex gap-1">
<img src="assets/icons/check-list.svg" alt="">
<p>Veja os melhores dos melhores da Multimeios</p>
</div>
</div>
</div>
</section>
<section>
<h1 class="text-center text-3xl md:text-4xl lg:text-5xl font-bold mb-20 lg:mb-16 text-gray-900">Acervo de Livros</h1>
<div class="container p-4 mx-auto grid grid-cols-1 md:grid-cols-3 md: lg:grid-cols-4 lg:w-5xl lg:gap-4 gap-8">
<figure class="relative rounded-lg overflow-hidden">
<a href="pages/book.php">
<img class="w-full h-48 object-cover" src="assets/img/divesos.png" alt="">
</a>
<figcaption class="absolute bottom-0 w-full px-4 py-2 text-white font-semibold text-lg bg-linear-to-b to-gray-900 ">
<span>Assuntos diversos</span>
</figcaption>
</figure>
<figure class="relative rounded-lg overflow-hidden">
<a href="pages/book2.php">
<img class="w-full h-48 object-cover" src="assets/img/biografia.png" alt="">
</a>
<figcaption class="absolute bottom-0 w-full px-4 py-2 text-white font-semibold text-lg bg-linear-to-b to-gray-900 ">
<span>Biografia</span>
</figcaption>
</figure>
<figure class="relative rounded-lg overflow-hidden">
<a href="pages/book3.php">
<img class="w-full h-48 object-cover" src="assets/img/cienciasSociais.png" alt="">
</a>
<figcaption class="absolute bottom-0 w-full px-4 py-2 text-white font-semibold text-lg bg-linear-to-b to-gray-900 ">
<span>Ciências Humanas e Sociais</span>
</figcaption>
</figure>
<figure class="relative rounded-lg overflow-hidden">
<a href="pages/book4.php">
<img class="w-full h-48 object-cover" src="assets/img/cienciasDaNatureza.png" alt="">
</a>
<figcaption class="absolute bottom-0 w-full px-4 py-2 text-white font-semibold text-lg bg-linear-to-b to-gray-900 ">
<span>Ciências da Natureza</span>
</figcaption>
</figure>
<figure class="relative rounded-lg overflow-hidden">
<a href="pages/book5.php">
<img class="w-full h-48 object-cover" src="assets/img/colecao.png" alt="">
</a>
<figcaption class="absolute bottom-0 w-full px-4 py-2 text-white font-semibold text-lg bg-linear-to-b to-gray-900 ">
<span>Redação</span>
</figcaption>
</figure>
<figure class="relative rounded-lg overflow-hidden">
<a href="pages/book6.php">
<img class="w-full h-48 object-cover" src="assets/img/circus.png" alt="">
</a>
<figcaption class="absolute bottom-0 w-full px-4 py-2 text-white font-semibold text-lg bg-linear-to-b to-gray-900 ">
<span>Crônica</span>
</figcaption>
</figure>
<figure class="relative rounded-lg overflow-hidden">
<a href="pages/book7.php">
<img class="w-full h-48 object-cover" src="assets/img/ficcaoCientifica.png" alt="">
</a>
<figcaption class="absolute bottom-0 w-full px-4 py-2 text-white font-semibold text-lg bg-linear-to-b to-gray-900 ">
<span>Ficção Científica</span>
</figcaption>
</figure>
<!--
<a href="livros/livro7.php"><article>
<img src="img/portfolio/cultura.png" alt="" width="250px">
<h3>Cultura</h3>
</article>
</a>
<a href="livros/livro8.php"><article>
<img src="img/portfolio/dicionario.png" alt="" width="250px">
<h3>Dicionários</h3>
</article>
</a>
<a href="livros/livro9.php"><article>
<img src="img/portfolio/eixotecnico.png" alt="" width="250px">
<h3>Eixo Técnico</h3>
</article>
</a>
<a href="livros/livro10.php"><article>
<img src="img/portfolio/espiritualidade.png" alt="" width="250px">
<h3>Artes</h3>
</article>
</a>
<a href="livros/livro11.php"><article>
<img src="img/portfolio/exatas.png" alt="" width="250px">
<h3>Matemática</h3>
</article>
</a>
<a href="livros/livro12.php"><article>
<img src="img/portfolio/ficcaoCientifica.png" alt="" width="250px">
<h3>Ficção Científica</h3>
</article>
</a>
<a href="livros/livro13.php"><article>
<img src="img/portfolio/formacaoProfessores.png" alt="" width="250px">
<h3>Formação de Professores</h3>
</article>
</a>
<a href="livros/livro14.php"><article>
<img src="img/portfolio/infantoJuvenil.png" alt="" width="250px">
<h3>Infanto Juvenil</h3>
</article>
</a>
<a href="livros/livro15.php"><article>
<img src="img/portfolio/linguagensCodigos.png" alt="" width="250px">
<h3>Linguagens e Códigos</h3>
</article>
</a>
<a href="livros/livro16.php"><article>
<img src="img/portfolio/rom.png" alt="" width="250px">
<h3>Romances</h3>
</article>
</a> -->
</div>
</section>
<new-footer></new-footer>
<script src="js/script.js"></script>
</body>
</html>