| Current Path : /home2/wtmwscom/www/member/ |
| Current File : /home2/wtmwscom/www/member/member_joining_greeting.php |
<?php
session_start();
include('../connection.php');
include '../function_lib.php';
//$uid = $_GET['uid'];
$uid = $_SESSION['userid'];
$result = mysqli_query($connection, "SELECT * FROM user WHERE uid='" . $uid . "'");
$row = mysqli_fetch_array($result);
if(mysqli_num_rows($result)==0){
redirect("index.php");
}
?>
<html>
<head>
<title>Joining Greeting</title>
<link href="../imgs/favicon2.ico" type="image/ico" rel="Shortcut Icon">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
body{
background: #2DAB8B;
font-family: sans-serif;
margin-top: 0;
}
#main{
background-color:#fff;
width:1045px;
position:absolute;
left:10%;
}
#logo{
border-top: #0091ED thick solid;
}
#logo a{
text-decoration: none;
padding:5px;
color: orange;
font-weight: bold;
font-size: 35px;
font-style: italic;
}
p{
color: #333333;
font-size: 14px;
}
p a{
color: #0090EC;
text-decoration: none;
}
p a:hover{
text-decoration: underline;
}
table{width:60%; border-collapse:collapse; table-layout:auto; vertical-align:top; margin-bottom:15px; border:1px solid #CCCCCC;}
table thead th{color:#FFFFFF; background-color:#666666; border:1px solid #CCCCCC; border-collapse:collapse; text-align:center; table-layout:auto; vertical-align:middle;}
table tbody td{vertical-align:top; border-collapse:collapse; border-left:1px solid #CCCCCC; border-right:1px solid #CCCCCC;}
table thead th, table tbody td{padding:5px; border-collapse:collapse;}
table tbody tr.light{color:#666666; background-color:#F7F7F7;}
table tbody tr.dark{color:#666666; background-color:#E8E8E8;}
</style>
</head>
<body>
<div id="main">
<div id="logo">
<a href="index.php"><img src="../img/logo.png" alt=" Wtm WebShop"></a>
</div>
<hr style="color: yellowgreen">
<!-- end logo -->
<div>
<p style="text-align: center; color: #556b2f; font-size: 23px; font-family: Tahoma; font-weight: bold;">
Congratulation! Registration Successfully Completed
<br />
</p>
<p style="text-align: center; color: navy; font-size: 14px;">Welcome and Thank You for joining <b> Wtm WebShop</b>.
<br /><br />
</p>
</div>
<div>
<center>
<table>
<thead>
<th colspan="2" style="text-align: center;">Account Details</th>
</thead>
<tbody>
<tr class="light">
<td width="245" align="right">User Id </td>
<td><?php echo $row['login_id']; ?></td>
</tr>
<tr class="dark">
<td width="200" align="right">Password </td>
<td><?php echo $row['password']; ?></td>
</tr>
<tr class="light">
<td width="200" align="right">Date of Joining </td>
<td><?php echo date("d M, Y h:i A", strtotime($row['reg_date'])); ?></td>
</tr>
</tbody>
<thead>
<th colspan="2" style="text-align: center;">Personal Details</th>
</thead>
<tbody>
<tr class="light">
<td align="right">Name </td>
<td><?php echo $row['name']; ?></td>
</tr>
<?php /*<tr class="light">
<td align="right">Address :</td>
<td><?php echo $row['adress']; ?></td>
</tr>*/?>
<tr class="dark">
<td align="right">City </td>
<td><?php echo $row['city']; ?></td>
</tr>
<?php /*<tr class="light">
<td align="right">State :</td>
<td><?php echo $row['state']; ?></td>
</tr>
<tr class="dark">
<td align="right">Country :</td>
<td><?php echo $row['country']; ?></td>
</tr>
<tr class="light">
<td align="right">Pin Code :</td>
<td><?php echo $row['Pinnumber']; ?></td>
</tr>*/?>
</tbody>
</table>
</center>
</div>
<center>
<div style="width: 90%">
<p>
<br />
The user Id No. and password are given here along with other details for accessing your account & any related information at our Official website <a href="http://www.mindspace" target="_blank">www.mindspace</a> We suggest you to change your password immediately. If any problem relating to login occurs or for any other assistance contact us at our Email Id : <a href="mailto:info@mindspace" target="_blank">info@mindspace</a>
<br /><br />
Once again Congratulations and Best of Luck for a long and great relation with our <b> Wtm WebShop </b> family.
</p>
<p style="text-align: left;"><br />
<font color="#556b2f" size="3">Thank You</font>
<br />
<a href="../index.php">Go To Home</a>
<br /><br />
</p>
<p>
<button onclick="window.print()">Print this document</button>
</p>
</div>
</center>
</body>
</html>