-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminHome.php
More file actions
88 lines (81 loc) · 3.16 KB
/
adminHome.php
File metadata and controls
88 lines (81 loc) · 3.16 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
<?php
session_start();
if (!isset($_SESSION["username"])) {
header("location:login.php");
}
?>
<!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">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<title>Document</title>
</head>
<body>
<?php echo $_SESSION["username"] ?>
<nav>
<div class="logo">
<p>HealthAR</p>
</div>
<ul>
<li><a href="adminHome.php">Profile</a></li>
<li><a href="addPlayer.php">Add player</a></li>
<li><a href="addcoach.php">Add Coach</a></li>
<li><a href="inspectPlayer.php">inspect Player</a></li>
<li><a href="inspectCoach.php">inspect Coach</a></li>
<a href="logout.php">Logout</a>
</ul>
</nav>
<br><br>
<div class="container rounded bg-white mt-5 mb-5">
<div class="row">
<div class="col-md-3 border-right">
<div class="d-flex flex-column align-items-center text-center p-3 py-5"><img class="rounded-circle mt-5" width="150px" src="https://st3.depositphotos.com/15648834/17930/v/600/depositphotos_179308454-stock-illustration-unknown-person-silhouette-glasses-profile.jpg"><span class="font-weight-bold">insert image</span><span class="text-black-50">coming soon</span><span> </span></div>
</div>
<div class="col-md-7 border-right">
<div class="p-3 py-5">
<div class="d-flex justify-content-between align-items-center mb-3">
<h4 class="text-right">Admin Info</h4>
</div>
<div class="row mt-1">
<table class="table">
<tbody>
<tr>
<td scope="col">Index number</td>
<td scope="col">001</td>
</tr>
<tr>
<td scope="row">First name</td>
<td colspan="2">Ranidu</td>
</tr>
<tr>
<td scope="row">Last Name</td>
<td colspan="2">Vishwa</td>
</tr>
<tr>
<td scope="row">dob</td>
<td colspan="2">26/07/1998</td>
</tr>
<tr>
<td scope="row">Address</td>
<td colspan="2">236/A Peradeniya road, Kandy</td>
</tr>
<tr>
<td scope="row">Email</td>
<td colspan="2">ranidume@admin.com</td>
</tr>
<tr>
<td scope="row">Admin Privileges</td>
<td colspan="2">View/add/delete users</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>