-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmy-orders.php
50 lines (41 loc) · 1.31 KB
/
my-orders.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<?php include_once('includes/head.php'); ?>
<title>MedicoRx | My Orders</title>
<style>
.collection-item {
display: flex;
align-items: center;
}
.bold {
font-weight: bold;
font-size: 20px;
}
</style>
</head>
<body>
<?php include_once('includes/navbar.php'); ?>
<div class="container" style="max-width: 800px;">
<ul id="order-list" class="collection with-header">
<li class="collection-header">
<h4>My Orders</h4>
</li>
</ul>
</div>
<template id="list-item">
<li class="collection-item waves-effect">
<div style="flex-grow: 1;">
<div class="grey-text">Order ID: <span class="order-id">29382361</span></div>
Status: <span class="status">Delivered on Dec 11, 19</span>
</div>
<span class="green-text bold">₹<span class="amount">200</span></span><br>
</li>
</template>
<?php include_once('includes/scripts.php'); ?>
<script src="js/my-orders.js"></script>
</body>
</html>