-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProfile.php
46 lines (38 loc) · 1.36 KB
/
Profile.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
session_start();
if (isset($_SESSION['id']) && isset($_SESSION['user_name'])) {
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/ico" href="/favicon.ico"/>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<div class="top">
<a href="index.php"><img src="logo.jpg" alt="" class="logo"></a>
<div>
<h1>Programing</h1>
</div>
</div>
<div class="main">
<h1>Profile</h1>
<h2>Username</h2>
<h3><?php $name ?></h3>
<h2>Password</h2>
<h3><?php $password ?></h3>
</div>
<div class="side">
<ul>
<li><a href="index (1).php" target="_blank">LOGIN</a></li>
<li><a href="About.html" target="_blank">About</a></li>
<li><a href="Contact Us.html" target="_blank">Contact us</a></li>
<li><a href="Videos.html" target="_blank">Videos</a></li>
<li><a href="Channels.html" target="_blank">Channels I learn from it</a></li>
</ul>
</div>
</body>
</html>