-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
70 lines (60 loc) · 2.11 KB
/
dashboard.php
File metadata and controls
70 lines (60 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
62
63
64
65
66
67
68
69
70
<?php
include 'auth.php';
include 'db.php';
$user_id = $_SESSION['user_id'];
$query = "SELECT name FROM users WHERE id='$user_id'";
$result = $conn->query($query);
$user = $result->fetch_assoc();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Dashboard</title>
<link rel="stylesheet" href="assets/css/dashboard.css">
</head>
<body>
<!-- Background Animation -->
<div class="background-animation">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<!-- Dashboard Content -->
<div class="dashboard-container">
<h1>Welcome, <?php echo $user['name']; ?>! 👋</h1>
<!-- Cartoon Greeting -->
<div class="cartoon-greeting">
<p>✨ "Every great idea starts with a small step. Let's explore AI together!" ✨</p>
</div>
<!-- Navigation Cards -->
<div class="nav-cards">
<div class="card" onclick="window.location.href='services.php'">
<i class="fas fa-robot"></i>
<h3>Explore AI Services</h3>
<p>Discover powerful AI tools for your projects.</p>
</div>
<div class="card" onclick="window.location.href='about.php'">
<i class="fas fa-users"></i>
<h3>About Us</h3>
<p>Learn more about our mission and team.</p>
</div>
<div class="card" onclick="window.location.href='contact.php'">
<i class="fas fa-envelope"></i>
<h3>Contact</h3>
<p>Get in touch with us for support or inquiries.</p>
</div>
<div class="card" onclick="window.location.href='logout.php'">
<i class="fas fa-sign-out-alt"></i>
<h3>Logout</h3>
<p>Securely log out of your account.</p>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<p>Made with ❤️ by MindMatrix.io | © 2023</p>
</footer>
</body>
</html>