-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathprofile.php
381 lines (353 loc) · 11.5 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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
<?php
include_once('./includes/headerNav.php');
//this restriction will secure the pages path injection
if(!(isset($_SESSION['id']))){
header("location:index.php?UnathorizedUser");
}
$sql8 ="SELECT * FROM customer WHERE customer_id='{$_SESSION['id']}';";
$result8 = $conn->query($sql8);
$row8 = $result8->fetch_assoc();
$_SESSION['customer_name'] = $row8['customer_fname'];
$_SESSION['customer_email'] = $row8['customer_email'];
$_SESSION['customer_phone'] = $row8['customer_phone'];
$_SESSION['customer_address'] = $row8['customer_address'];
$conn->close();
?>
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<title>Profile</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.card-container{
margin-top: 25px;
background: #f9f9f9;
width: 100%;
padding: 50px;
border-radius: 16px;
border: 1px solid #a3a3a3;
}
.edit-container{
border:none;
height: 40%;
color:rgb(32, 69, 32);
display:flex;
/* align-items:center; */
justify-content:center;
}
#edit{
margin-left:5%;
background:aliceblue;
height:200px;
width:25%;
overflow: hidden;
}
h1{
text-align: center;
text-transform: uppercase;
}
#role{
color: orange;
}
h4{
text-decoration:underline;
color:dark;
}
h4 a{
text-alignment:center;
color:blue
}
#admin{
text-decoration:none;
font-weight:bold;
}
.profile_edit{
display:none;
}
.address_edit{
display:none;
}
.contact_edit{
display:none;
}
.show { display:inline; }
@media (max-width: 500px) {
.edit-container{
width:100%;
border:none;
color:rgb(32, 69, 32);
text-align:center;
flex-direction:column;
}
#edit{
height:100%;
margin-bottom:5%;
background:aliceblue;
width:85%;
}
marquee{
width:40%;
}
}
</style>
</head>
<header>
<!-- top head action, search etc in php -->
<!-- inc/topheadactions.php -->
<?php require_once './includes/topheadactions.php'; ?>
<!-- desktop navigation -->
<!-- inc/desktopnav.php -->
<?php require_once './includes/desktopnav.php' ?>
<!-- mobile nav in php -->
<!-- inc/mobilenav.php -->
<?php require_once './includes/mobilenav.php'; ?>
</header>
<hr>
<!-- Header End====================================================================== -->
<h1>
Hello,
<span id="role">
<?php echo ( $_SESSION['customer_role']=='admin')? 'Admin': $_SESSION['customer_name'];?>
</span>
welcome to your profile
</h1>
<h1>Manage Your Account</h1>
<!-- profile setup -->
<div class="container text-center card-container">
<div class="row" style="gap: 25px">
<div class="col d-flex justify-content-center">
<!-- Card Start -->
<div class="card" style="width: 18rem">
<div class="card-body">
<h5 class="card-title">PROFILE</h5>
<!-- user edit button -->
<div style="float: left" class="col">
<a class="btn btn-primary" href="#/profile/edit" id="edit_link1">Edit</a>
</div>
<br>
<br>
<!-- user edit -->
<div class="profile_edit">
<form action="<?php echo $_SERVER['PHP_SELF']; ?> " method="post">
<br />
<br />
<div class="row mb-3">
<!-- <label for="inputEmail3" class="col-sm-2 col-form-label">Email</label> -->
<div class="col-sm-12">
<input
type="text"
name="name"
id=""
class="form-control"
placeholder="New Name..."
/>
</div>
</div>
<div class="row mb-3">
<!-- <label for="inputPassword3" class="col-sm-2 col-form-label"
>Password</label
> -->
<div class="col-sm-12">
<input
type="email"
name="email"
id=""
class="form-control"
placeholder="New Eamil..."
/>
</div>
<!-- Save button -->
<br />
<br />
<div
style="float: left"
class="col">
<button
type="submit"
name="save"
class="btn btn-primary">
Save
</button>
</div>
</div>
</form>
</div>
<!-- end user edit -->
<p class="card-text">
<?php echo $_SESSION['customer_name']." "."(".$_SESSION['customer_role'].")" ?>
</p>
<p class="card-text">
<?php echo $_SESSION['customer_email'] ?>
</p>
<?php
if($_SESSION['customer_role'] =='admin') {
?>
<a
id='admin'
href='admin/login.php'
class="btn btn-primary">
Visit Admin Panel
</a>
<?php } ?>
</div>
</div>
<!-- Card End -->
</div>
<!-- New Col -->
<div class="col d-flex justify-content-center">
<!-- Card Start -->
<div class="card" style="width: 18rem">
<div class="card-body">
<h5 class="card-title">Address Book</h5>
<a
href="#/address/edit"
id="edit_link2"
class="btn btn-primary">
Edit
</a>
<!-- adress book form -->
<!-- user edit -->
<div class="address_edit ">
<form action="<?php echo $_SERVER['PHP_SELF']; ?> " method="post">
<br />
<br />
<div class="row mb-3">
<!-- <label for="inputEmail3" class="col-sm-2 col-form-label">Email</label> -->
<div class="col-sm-12">
<input
type="text"
name="address"
id=""
class="form-control"
placeholder="New Address..."
/>
</div>
</div>
<div class="row mb-3">
<!-- Save button -->
<br />
<br />
<div style="float: left" class="col">
<button
type="submit"
name="save"
class="btn btn-primary">
Save
</button>
</div>
</div>
</form>
</div>
<!-- end of address book form -->
<p class="card-text">
<?php echo $_SESSION['customer_address'] ?>
</p>
</div>
</div>
<!-- Card End -->
</div>
<!-- New Col -->
<div class="col d-flex justify-content-center">
<!-- Card Start -->
<div class="card" style="width: 18rem">
<div class="card-body">
<h5 class="card-title">Contact Book</h5>
<a
href="#/contact/edit"
id="edit_link3"
class="btn btn-primary">
Edit
</a>
<!-- adress book form -->
<!-- user edit -->
<div class="contact_edit ">
<form action="<?php echo $_SERVER['PHP_SELF']; ?> " method="post">
<br />
<br />
<div class="row mb-3">
<!-- <label for="inputEmail3" class="col-sm-2 col-form-label">Email</label> -->
<div class="col-sm-12">
<input
type="number"
name="number"
id=""
class="form-control"
placeholder="New Number..."
/>
</div>
</div>
<div class="row mb-3">
<!-- Save button -->
<br />
<br />
<div style="float: left" class="col">
<button
type="submit"
name="save"
class="btn btn-primary">
Save
</button>
</div>
</div>
</form>
</div>
<!-- end of address book form -->
<p class="card-text">
<?php echo $_SESSION['customer_phone'] ?>
</p>
</div>
<!-- Card End -->
</div>
<!-- Col End -->
</div>
</div>
</div>
<?php
//for edit backend users data php and mysql
if(isset($_POST['save'])){
if(!empty($_POST['name']) AND !empty($_POST['email'])){
include "includes/config.php";
$sql6 = "UPDATE customer
SET customer_fname= '{$_POST['name']}' ,
customer_email= '{$_POST['email']}'
WHERE customer_id= '{$_SESSION['id']}' ";
$conn->query($sql6);
$conn->close();
echo "success";
}
if(!empty($_POST['address'])){
include "includes/config.php";
$sql6 = "UPDATE customer
SET customer_address= '{$_POST['address']}'
WHERE customer_id= '{$_SESSION['id']}' ";
$conn->query($sql6);
$conn->close();
echo "success";
}
if(!empty($_POST['number'])){
include "includes/config.php";
$sql6 = "UPDATE customer
SET customer_phone= '{$_POST['number']}'
WHERE customer_id= '{$_SESSION['id']}' ";
$conn->query($sql6);
$conn->close();
echo "success";
}
}
?>
<!-- Footer====================================================================== -->
<?php
include_once('./includes/footer.php')
?>
<!-- Placed at the end of the document so the pages load faster ============================================= -->
<script src="./js/jquery.js" type="text/javascript"></script>
<script src="./js/bootstrap.min.js" type="text/javascript"></script>
<script src="./js/edit.js"></script>