-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathedit_account.php
executable file
·46 lines (37 loc) · 1.29 KB
/
edit_account.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
<h1 align="center">Edit your Account</h1>
<form action="" method="post" enctype="multipart/form-data">
<div class="form-group">
<label>Customer Name:</label>
<input type="text" name="c_name" class="form-control" required>
</div>
<div class="form-group">
<label>Customer Email:</label>
<input type="text" name="c_email" class="form-control" required>
</div>
<div class="form-group">
<label>Customer country:</label>
<input type="text" name="c_country" class="form-control" required>
</div>
<div class="form-group">
<label>Customer city:</label>
<input type="text" name="c_city" class="form-control" required>
</div>
<div class="form-group">
<label>Customer contact:</label>
<input type="text" name="c_contact" class="form-control" required>
</div>
<div class="form-group">
<label>Customer Address:</label>
<input type="text" name="c_address" class="form-control" required>
</div>
<div class="form-group">
<label>Customer Image:</label>
<input type="file" name="c_image" class="form-control" required><br>
<img src="customer_images/brock_lesnar.jpg" width="100" height="100" class="img-responsive" >
</div>
<div class="text-center">
<button name="update" class="btn btn-primary">
<i class="fa fa-user-md"> </i> Update Now
</button>
</div>
</form>