-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchange_user_profile.php
187 lines (179 loc) · 8.88 KB
/
change_user_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
<?php
session_start();
?>
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<?php include('user/components/head.php') ?>
</head>
<body>
<!-- header start -->
<?php include('user/components/header.php') ?>
<div class="breadcrumb-area">
<div class="container">
<div class="breadcrumb-content text-center">
<h2 class="text-dark">Chỉnh sửa thông tin</h2>
<?php if (isset($_SESSION['error_register'])) { ?>
<p class="text-danger"><?php echo $_SESSION['error_register'];
unset($_SESSION['error_register']); ?></p>
<?php } ?>
</div>
</div>
</div>
<!-- change profile-area start -->
<?php
$user_name = $_SESSION['user']['name'];
$user_email = $_SESSION['user']['email'];
$user_address = $_SESSION['user']['address'];
$user_phonenumber = $_SESSION['user']['phone'];
$user_gender = $_SESSION['user']['gender'];
?>
<div class="register-area ptb-100">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 col-12 col-lg-12 col-xl-6 ml-auto mr-auto">
<div class="login">
<div class="login-form-container">
<div class="login-form">
<form action="process_change_profile.php" method="post" enctype="multipart/form-data">
<label for="">Họ và tên</label>
<input name="name" type="text" value="<?= $user_name ?>" require />
<label for="">Email</label>
<input name="email" type="email" value="<?= $user_email ?>" readonly="readonly" />
<label for="">Địa chỉ</label>
<input name="address" type="text" value="<?= $user_address ?>" />
<label for="">Số điện thoại</label>
<input name="phonenumber" type="text" value="<?= $user_phonenumber ?>" />
<label for="">Giới tính</label>
<input name="gender" type="text" value="<?= $user_gender ?>" />
<label for="">Ảnh đại diện</label>
<input type="file" name="fileToUpload" require> <br>
<div class="button-box">
</form>
<button type="submit" class="default-btn floatright">Lưu thông tin</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 ml-auto">
<div class="cart-page-total">
<a href="index.php">Trở về trang chủ</a>
</div>
</div>
</div>
</div>
<!-- register-area end -->
<?php include('user/components/footer.php') ?>
<!-- modal -->
<div class="modal fade" id="exampleCompare" tabindex="-1" role="dialog" aria-hidden="true">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span class="pe-7s-close" aria-hidden="true"></span>
</button>
<div class="modal-dialog modal-compare-width" role="document">
<div class="modal-content">
<div class="modal-body">
<form action="#">
<div class="table-content compare-style table-responsive">
<table>
<thead>
<tr>
<th></th>
<th>
<a href="#">Remove <span>x</span></a>
<img src="assets/img/cart/4.jpg" alt="" />
<p>Blush Sequin Top</p>
<span>$75.99</span>
<a class="compare-btn" href="#">Add to cart</a>
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="compare-title">
<h4>Description</h4>
</td>
<td class="compare-dec compare-common">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has
beenin the stand ard dummy text ever since the 1500s, when an unknown printer took a galley
</p>
</td>
</tr>
<tr>
<td class="compare-title">
<h4>Sku</h4>
</td>
<td class="product-none compare-common">
<p>-</p>
</td>
</tr>
<tr>
<td class="compare-title">
<h4>Availability</h4>
</td>
<td class="compare-stock compare-common">
<p>In stock</p>
</td>
</tr>
<tr>
<td class="compare-title">
<h4>Weight</h4>
</td>
<td class="compare-none compare-common">
<p>-</p>
</td>
</tr>
<tr>
<td class="compare-title">
<h4>Dimensions</h4>
</td>
<td class="compare-stock compare-common">
<p>N/A</p>
</td>
</tr>
<tr>
<td class="compare-title">
<h4>brand</h4>
</td>
<td class="compare-brand compare-common">
<p>HasTech</p>
</td>
</tr>
<tr>
<td class="compare-title">
<h4>color</h4>
</td>
<td class="compare-color compare-common">
<p>Grey, Light Yellow, Green, Blue, Purple, Black</p>
</td>
</tr>
<tr>
<td class="compare-title">
<h4>size</h4>
</td>
<td class="compare-size compare-common">
<p>XS, S, M, L, XL, XXL</p>
</td>
</tr>
<tr>
<td class="compare-title"></td>
<td class="compare-price compare-common">
<p>$75.99</p>
</td>
</tr>
</tbody>
</table>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- all js here -->
<?php include('user/components/link_footer.php') ?>
</body>
</html>