-
Notifications
You must be signed in to change notification settings - Fork 0
/
body.php
30 lines (30 loc) · 828 Bytes
/
body.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="dashboard.css" />
<title>Dasboard</title>
<link rel="stylesheet" type="text/css" href="body.css" />
<style>
h1{
padding-top:5px;
}
</style>
</head>
<body>
<div class="container">
<h1 class="heading">dashboard</h1>
<h1 class="welcome"><?php echo "Welcome ".$_SESSION['USER_NAME'];?></h1>
</br>
<a href="logout.php">Logout</a>
<div class="banner" >
<img src="img/banner.png" alt="">
</div>
<div class="box-container">
<div class="box">
</div>
</div>
</div>
</body>
<script src="Script.js"></script>
</html>