-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopers.php
More file actions
159 lines (130 loc) · 4.49 KB
/
Copy pathdevelopers.php
File metadata and controls
159 lines (130 loc) · 4.49 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
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
<?php
session_start();
require_once '../includes/db-conn.php';
if (!isset($_SESSION['sadmin_id'])) {
header("Location: ../index.php");
exit();
}
$user_id = $_SESSION['sadmin_id'];
$sql = "SELECT name, email, nic, mobile, profile_picture FROM sadmins WHERE id = ?";
$stmt = $conn->prepare($sql);
$stmt->bind_param("i", $user_id);
$stmt->execute();
$result = $stmt->get_result();
$user = $result->fetch_assoc();
$stmt->close();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Developer - Edulk</title>
<meta content="" name="description">
<meta content="" name="keywords">
<?php include_once ("includes/css-links-inc.php"); ?>
<style>
.team-section {
padding: 50px 0;
}
.team-card {
background: #fff;
padding: 25px;
border-radius: 15px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease-in-out;
min-height: 400px;
max-width: 320px;
margin: 0 auto;
}
.team-card:hover {
transform: translateY(-5px);
}
.team-card img {
width: 220px;
height: 220px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.team-card h4 {
font-size: 1.6rem;
margin-bottom: 5px;
}
.team-card h6 {
font-size: 1.1rem;
color: #6c757d;
margin-bottom: 5px;
}
.team-card p.role {
font-size: 1.15rem;
font-weight: 500;
color: #007bff;
margin-bottom: 15px;
}
.team-icons a {
font-size: 1.4rem;
margin: 0 4px;
color: #333;
transition: color 0.2s ease-in-out;
}
.team-icons a:hover {
color: #007bff;
}
.dev-footer {
text-align: center;
margin-top: 40px;
padding: 20px;
background: #f8f9fa;
border-top: 1px solid #ddd;
}
.dev-footer a {
color: #007bff;
text-decoration: none;
}
.dev-footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<?php include_once("../includes/header.php") ?>
<?php include_once("../includes/sadmin-sidebar.php") ?>
<div class="pagetitle">
<h1 class="page-title">Manage Resources</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item active">Developer Team</li>
</ol>
</nav>
</div>
<section class="team-section container">
<h1 class="mb-5 text-primary fw-bold text-center">Developer</h1>
<div class="row g-4 justify-content-center">
<div class="col-md-4 col-sm-6">
<div class="team-card text-center">
<img src="../assets/images/Developers/malitha3.jpg" alt="Team Member">
<h4 class="fw-bold">Malitha Tishmal</h4>
<h6 class="fw-bold">Lucifer23</h6>
<p class="role">Full Stack Developer</p>
<div class="team-icons">
<a href="https://malithatishamal.42web.io/?i=1#about" target="_blank"><i class="bi bi-globe"></i></a>
<a href="https://github.com/malitha-tishamal" target="_blank"><i class="bi bi-github"></i></a>
<a href="https://www.linkedin.com/in/malitha-tishamal" target="_blank"><i class="bi bi-linkedin"></i></a>
<a href="https://www.facebook.com/malitha.tishamal" target="_blank"><i class="bi bi-facebook"></i></a>
<a href="mailto:malithatishamal@gmail.com"><i class="bi bi-envelope"></i></a>
</div>
</div>
</div>
</div>
</section>
<?php include_once("../includes/footer.php") ?>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<?php include_once("../includes/js-links-inc.php") ?>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center">
<i class="bi bi-arrow-up-short"></i>
</a>
</body>
</html>