aboutsummaryrefslogtreecommitdiff
path: root/templates/inventory
diff options
context:
space:
mode:
authorshivam kohli <kohlishivam5522@gmail.com>2018-07-01 21:28:44 +0530
committershivam kohli <kohlishivam5522@gmail.com>2018-07-01 21:28:44 +0530
commitcd3fdd5d00fe2ce4b49a5cf3577fc7886e2fbf31 (patch)
tree39468c764c3588ac97db9181b835241136b36285 /templates/inventory
parent088a3edd1582004cdf1fe791df40041a36f20e0e (diff)
downloadcodeless-cd3fdd5d00fe2ce4b49a5cf3577fc7886e2fbf31.tar.gz
codeless-cd3fdd5d00fe2ce4b49a5cf3577fc7886e2fbf31.tar.bz2
codeless-cd3fdd5d00fe2ce4b49a5cf3577fc7886e2fbf31.zip
added GNU style build and payment button
Diffstat (limited to 'templates/inventory')
-rw-r--r--templates/inventory/fulfillment.html10
-rw-r--r--templates/inventory/product.html10
-rw-r--r--templates/inventory/test.html13
3 files changed, 20 insertions, 13 deletions
diff --git a/templates/inventory/fulfillment.html b/templates/inventory/fulfillment.html
new file mode 100644
index 0000000..76ed449
--- /dev/null
+++ b/templates/inventory/fulfillment.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title></title>
+</head>
+<body>
+Thank you for purchasing.
+</form>
+</body>
+</html> \ No newline at end of file
diff --git a/templates/inventory/product.html b/templates/inventory/product.html
index a665876..778f490 100644
--- a/templates/inventory/product.html
+++ b/templates/inventory/product.html
@@ -67,6 +67,16 @@
<h1 style="text-transform: uppercase;" id="name">{{ name }}</h1>
</center>
+ <h5 color="black">The code for the pay now button is:</h5>
+
+ <xmp style="font-size: 50% ">
+ <a href="{{ href }}" style="text-decoration: none;" onmouseover="this.style.textDecoration = 'underline'" onmouseout="this.style.textDecoration = 'none'">buy now</a>
+ </xmp>
+
+ <h5 color="black">The above code would look like(click to perform the payment):</h5>
+ <a href="{{ href }}" style="text-decoration: none;" onmouseover="this.style.textDecoration = 'underline'" onmouseout="this.style.textDecoration = 'none'">buy now</a>
+
+
<h5 color="black">Description:</h5><h6>{{ description }}</h6><br>
<h5 color="black">Price:</h5><h6>{{ price }}</h6><br>
<h5 color="black">The Cuurent Inventory on Hand is:- {{ inventory_on_hand }}</h5>
diff --git a/templates/inventory/test.html b/templates/inventory/test.html
deleted file mode 100644
index d9db3b0..0000000
--- a/templates/inventory/test.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title></title>
-</head>
-<body>
-make payment
-<form name="Payment" action="/payment/" method="post" enctype="multipart/form-data">
- {% csrf_token %}
- <button name="Payment" type="submit" class="submit">Payment</button>
-</form>
-</body>
-</html> \ No newline at end of file