-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
52 lines (44 loc) · 1.24 KB
/
index.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
47
48
49
50
51
52
<?php
include_once 'dbh.inc.php';
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@400;700&display=swap" rel="stylesheet">
<meta charset="utf-8">
<title>Members Area</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--header section-->
<header class = "header">
<img src="image/copylogo.png" alt="logo"/>
<nav class = "Navigation">
<ul>
<a href="index.html"><li>Home |</li></a>
<li>About |</li>
<li>Contact |</li>
<li>Invest With Us</li>
<input type="text" placeholder="Search"/>
</ul>
</nav>
</header>
<!--end of header section-->
</body>
<!--main bod section-->
<div class = "membersmain">
<div class = "introsection">
<?php
echo '<h2>Welcome Back <span> ' . $_SESSION['uid'] . '</span></h2>';
?>
<form method="POST" action="logout.php">
<button name="submit">Log Out</button>
</form>
</div>
<div>
<img src="image/png29.png"/>
</div>
</div>