-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.php
154 lines (127 loc) · 6.04 KB
/
user.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
$con=mysqli_connect("localhost","root","","helper");
session_start();
if (!isset($_SESSION['log'])) {
header('location:login-register.php');
}
?>
<!doctype html>
<html class="no-js" lang="zxx">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>mr.helper</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Bootstrap Fremwork Main Css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- All Plugins css -->
<link rel="stylesheet" href="css/plugins.css">
<!-- Theme shortcodes/elements style -->
<link rel="stylesheet" href="css/shortcode/shortcodes.css">
<!-- Theme main style -->
<link rel="stylesheet" href="style.css">
<!-- Responsive css -->
<link rel="stylesheet" href="css/responsive.css">
<!-- User style -->
<link rel="stylesheet" href="css/custom.css">
<!-- Modernizr JS -->
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".wish-icon i").click(function(){
$(this).toggleClass("fa-heart fa-heart-o");
});
});
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto|Open+Sans">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Body main wrapper start -->
<div class="wrapper fixed__footer">
<!-- Start Header Style -->
<header id="header" class="htc-header">
<!-- Start Mainmenu Area -->
<div id="sticky-header-with-topbar" class="mainmenu__area sticky__header">
<div class="container">
<div class="row">
<div class="col-md-2 col-lg-2 col-6">
<div class="logo">
<a href="index.html">
<img src="images\logo.png" alt="logo">
</a>
</div>
</div>
<!-- Start MAinmenu Ares -->
<div class="col-md-8 col-lg-8 d-none d-md-block">
<nav class="mainmenu__nav d-none d-lg-block">
<ul class="main__menu">
<?php $uid = $_GET['uid'];
?>
</li>
<li><a href="order.php?uid=<?php echo $id ;?>">your order detail</a></li>
</ul>
</nav>
</div>
<!-- End MAinmenu Ares -->
<div class="col-md-2 col-lg-2 col-6">
<ul class="menu-extra">
<li class="search search__open d-none d-sm-block"><span class="ti-search"></span></li>
<li><a href="logout.php" class="btn btn-info" name="logout"><span class="ti-user"> logout</span></a></li>
</ul>
</div>
</div>
<div class="mobile-menu-area"></div>
</div>
</div>
<!-- End Mainmenu Area -->
</header>
<!-- End Header Style -->
<div class="body__overlay"></div>
<!-- Start Offset Wrapper -->
<div class="offset__wrapper">
<!-- Start Search Popap -->
<div class="search__area">
<div class="container" >
<div class="row" >
<div class="col-md-12" >
<div class="search__inner">
<form action="#" method="get">
<input placeholder="Search here... " type="text">
<button type="submit"></button>
</form>
<div class="search__close__btn">
<span class="search__close__btn_icon"><i class="zmdi zmdi-close"></i></span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Search Popap -->
<center>
<section class="htc__product__details pt--120 pb--100 bg__white">
<h2 ><b>your profile page</b><hr></h2>
<br>
<img src="images\profile\aa.gif" style="width: 150px; height: 150px; border-radius: 50%;" >
<h4><b>user name</b></h4>
<p>twisha</p>
<h4><b>email </b></h4>
<p><?php echo $_SESSION['user'];?></p><br><br>
<button class="btn btn-warning" name="update">updates</button>
</section>
</center>
</div>
</div>
</body>
</html>