summaryrefslogtreecommitdiff
path: root/templates/inventory/product.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/inventory/product.html')
-rw-r--r--templates/inventory/product.html77
1 files changed, 77 insertions, 0 deletions
diff --git a/templates/inventory/product.html b/templates/inventory/product.html
new file mode 100644
index 0000000..18fb381
--- /dev/null
+++ b/templates/inventory/product.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Home</title>
+ <style type="text/css">
+ *,
+ *::before,
+ *::after {
+ box-sizing: border-box;
+ }
+ html {
+ background-color: #f0f0f0;
+ }
+ body {
+ color: #999999;
+ font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
+ font-style: normal;
+ font-weight: 400;
+ letter-spacing: 0;
+ padding: 1rem;
+ text-rendering: optimizeLegibility;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ -moz-font-feature-settings: "liga" on;
+ }
+ .sidenav {
+ height: 100%;
+ width: 160px;
+ position: fixed;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ background-color: #111;
+ overflow-x: hidden;
+ padding-top: 20px;
+ }
+ .sidenav a {
+ padding: 6px 8px 6px 16px;
+ text-decoration: none;
+ font-size: 25px;
+ color: #818181;
+ display: block;
+ }
+ .sidenav a:hover {
+ color: #f1f1f1;
+ }
+ .main {
+ margin-left: 160px;
+ font-size: 28px;
+ padding: 0px 10px;
+ }
+ @media screen and (max-height: 450px) {
+ .sidenav {padding-top: 15px;}
+ .sidenav a {font-size: 18px;}
+ }
+ </style>
+</head>
+<body>
+
+<div class="sidenav">
+ <a href="/home">Home</a>
+ <a href="/logout">Logout</a></li>
+</div>
+
+<div class="main">
+ <center>
+ <h1 style="text-transform: uppercase;">{{ name }}</h1>
+ </center>
+
+ <h5 color="black">Description:</h5><h6>{{ description }}</h6><br>
+ <h5 color="black">Price:</h5><h6>{{ price }}</h6><br>
+ <h5 color="black">Inventory on Hand:</h5><h6>{{ inventory_on_hand }}</h6><br>
+
+</div>
+
+</body>
+</html> \ No newline at end of file