-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemberdashboard.php
43 lines (40 loc) · 1.36 KB
/
memberdashboard.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
<?php
session_start();
?>
<br>
<br>
<br>
<br>
<table border="1" align="center" style="border-color: #00ccff">
<tr>
<td> <h3 style="color: #00ccff";><?php
if($_SESSION['txtEmail']==true)
{
echo "Welcome "." ".$_SESSION['txtEmail'];
}
else
{
header('location:alogin.php');
}
?>
</h3></td>
<td align="center"><h3><a href="alogout.php">Logout</a></h3></td>
</tr>
</table>
<?php include("header.php"); ?>
<br><br>
<div id="services" class="services-area area-padding" style="background-color: #c2c2a3";>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline services-head text-center">
<h2><span>MANAGE-MEMBER</span></h2><br>
<p>SANGATH-IPL</p><br>
</div>
<br>
<h3 align="center"><u style="color: green"><a href="a_memberview.php">View All Members</a></u></h3>
<h3 align="center"><u style="color: green"><a href="#">View All Members Report</a></u></h3>
</div>
</div>
</div>
</div>