-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyOrders.php
More file actions
74 lines (69 loc) · 2.14 KB
/
myOrders.php
File metadata and controls
74 lines (69 loc) · 2.14 KB
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
<?php
session_start();
require('database/conection.php');
require('database/customer_emp.php');
$customer = getCustomerByEmail();
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>MyOrders</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./myOrders.css" rel="stylesheet" />
<link href="footer.css" rel="stylesheet" />
<link href="header2.css" rel="stylesheet" />
</head>
<body>
<?php include('./template/header2_tem.php');?>
<div class="grid-container">
<section>
<section class="upper-left">
<article>
<img class="profile-picture" src="./assets/perfil.jpg" />
<h5>Client Number</h5>
<p>612312312</p>
</article>
</section>
</section>
<section class="bottom-left">
<header><h3>Personal Information</h3></header>
<article>
<ul>
<li><b>Name</b><span><?php echo $customer['name']?></span></li>
<li><b>Email</b> <span><?php echo $customer['e_mail']?></span></li>
<li><b>Phone Number</b> <span><?php echo $customer['phone_num']?></span></li>
<li><b>Address</b> <span><?php echo $customer['address']?></span></li>
<li><b>VAT Number</b> <span><?php echo $customer['VAT_num']?></span></li>
</ul>
</article>
</section>
<section class="orders">
<header>
<h2>My Orders</h2>
</header>
<article class="order">
<h3>Order [numero]</h3>
<div class="separate" >
<div>
<p>Client:</p>
<p>Nome cliente: qwewq</p>
<p>Nome cliente: qwewq</p>
<p>Nome cliente: qwewq</p>
<p>Nome cliente: qwewq</p>
</div>
<div class="status">
<h2>Status</h2>
<span>Status</span>
</div>
</div>
</article>
</div>
</div>
</article>
</section>
</div>
<?php include('./template/footer_tem.php');?>
</body>
</html>