-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
61 lines (55 loc) · 2.11 KB
/
Copy pathhome.php
File metadata and controls
61 lines (55 loc) · 2.11 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
<?php
require_once __DIR__ . '/functions.php';
init_session();
enforce_https();
require_auth();
$userEmail = get_session_user();
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/home.css">
<title>Help Desk App</title>
</head>
<body>
<header>
<h1>Help Desk App</h1>
<div style="display: flex; gap: 16px; align-items: center;">
<p class="welcome-message">👤 <?php echo $userEmail; ?></p>
<a href="logout.php" style="color: white; text-decoration: none; font-weight: 500; padding: 8px 16px; background: rgba(255,255,255,0.2); border-radius: 6px; transition: all 0.3s ease;" onmouseover="this.style.background='rgba(255,255,255,0.3)'" onmouseout="this.style.background='rgba(255,255,255,0.2)'">Sair</a>
</div>
<nav>
<ul>
<li><a href="#">Início</a></li>
<li><a href="#">Tickets</a></li>
<li><a href="#">Soluções</a></li>
<li><a href="#">Contato</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Bem-vindo ao Help Desk App</h2>
<p>Resolva seus problemas de suporte de forma eficaz.</p>
<a href="#" class="cta-button">Crie um Ticket</a>
</section>
<section class="features">
<div class="feature">
<h3>Atendimento Rápido</h3>
<p>Nossa equipe está pronta para atender suas solicitações com rapidez e eficiência.</p>
</div>
<div class="feature">
<h3>Base de Conhecimento</h3>
<p>Explore nossa extensa base de conhecimento para encontrar respostas para suas perguntas comuns.</p>
</div>
<div class="feature">
<h3>Suporte 24/7</h3>
<p>Estamos disponíveis 24 horas por dia, 7 dias por semana, para atender às suas necessidades de suporte.</p>
</div>
</section>
<footer>
<p>© 2023 Help Desk App. Todos os direitos reservados.</p>
</footer>
</body>
</html>