-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreturn.php
49 lines (41 loc) · 1.49 KB
/
return.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
<!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') ?>
<link rel="stylesheet" href="css/shop.css">
<title>MedicoRx</title>
</head>
<body>
<?php include('includes/navbar.php') ?>
<main style="margin-top: 80px;">
<div class="container">
<ul id="medicine-list" class="collection">
</ul>
</div>
<div class="center-align" style="margin: 50px auto;">
<a href="#" class="btn btn-large waves-effect">Return</a>
</div>
</main>
<template id="medicine-template">
<li class="collection-item avatar">
<i class="fas fa-pills circle teal"></i>
<span class="medicine-name">Medicine Name</span>
<span class="green-text price">₹ 100</span>
<p>
<span class="blue-text company">ABC Pharmaceuticals</span><br>
<span class="mfg"></span><br>
<span class="exp"></span>
</p>
<div class="secondary-content price-container">
<input class="quantity-input" value="0" min="0" placeholder="Qty" type="number">
<span class="max black-text"></span>
</div>
</li>
</template>
<?php include_once('includes/scripts.php') ?>
<script src="js/return.js"></script>
</body>
</html>