aboutsummaryrefslogtreecommitdiff
path: root/templates/inventory/digital_inventory.html
diff options
context:
space:
mode:
authorshivam kohli <kohlishivam5522@gmail.com>2018-07-20 06:42:51 +0530
committershivam kohli <kohlishivam5522@gmail.com>2018-07-20 06:42:51 +0530
commit94be0d7216ec3c5f253b895681b11e7b0678211a (patch)
tree4569a7e5fd98048b16df8d734ce47380d40dc293 /templates/inventory/digital_inventory.html
parent6445ed8e1ceaf170315187635cf7df86e179b179 (diff)
downloadcodeless-94be0d7216ec3c5f253b895681b11e7b0678211a.tar.gz
codeless-94be0d7216ec3c5f253b895681b11e7b0678211a.tar.bz2
codeless-94be0d7216ec3c5f253b895681b11e7b0678211a.zip
improvement in complete architecture
Diffstat (limited to 'templates/inventory/digital_inventory.html')
-rw-r--r--templates/inventory/digital_inventory.html160
1 files changed, 160 insertions, 0 deletions
diff --git a/templates/inventory/digital_inventory.html b/templates/inventory/digital_inventory.html
new file mode 100644
index 0000000..da015a0
--- /dev/null
+++ b/templates/inventory/digital_inventory.html
@@ -0,0 +1,160 @@
+<!DOCTYPE html>
+<!--
+This file is part of the Taler Codeless Merchant.
+(C) 2018 GNUnet e.V.
+
+The Taler Codeless Merchant is free software: you can redistribute it and/or
+modify it under the terms of the GNU Affero General Public License as published
+by the Free Software Foundation, either version 3 of the License, or (at your
+option) any later version.
+
+The Taler Codeless Merchant is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
+for more details.
+
+You should have received a copy of the GNU Affero General Public License along
+with the Taler Codeless Merchant. If not, see <https://www.gnu.org/licenses/>.
+
+@author Shivam Kohli
+ -->
+<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;}
+ }
+ #contact {width:100%; height:100%; margin 0 auto; background: #DDD; }
+
+ .container {width:960px; height:auto; margin: 0 auto; padding: 50px 0;}
+
+ #contact .container form input,
+ #contact .container form textarea {
+ width:97.4%;
+ height:30px;
+ padding:5px 10px;
+ font-size: 12px;
+ color:#999;
+ letter-spacing:1px;
+ background: #FFF;
+ border:2px solid #FFF;
+ margin-bottom:25px;
+ -webkit-transition:all .1s ease-in-out;
+ -moz-transition:all .1s ease-in-out;
+ -ms-transition:all .1s ease-in-out;
+ -o-transition:all .1s ease-in-out;
+ transition:all .1s ease-in-out;}
+
+ #contact .container form input:focus,
+ #contact .container form textarea:focus {
+ border:2px solid #dd4545;
+ color:#999;}
+
+ #contact .container form textarea {
+ height:150px;}
+
+ #contact .container form .submit {
+ width:100%;
+ padding:5px 10px;
+ font-size: 12px;
+ letter-spacing:1px;
+ background:#dd4545;
+ height:40px;
+ text-transform:uppercase;
+ letter-spacing:1px;
+ color:#FFF;
+ border:2px solid #b43838;
+ -webkit-transition:all .1s ease-in-out;
+ -moz-transition:all .1s ease-in-out;
+ -ms-transition:all .1s ease-in-out;
+ -o-transition:all .1s ease-in-out;
+ transition:all .1s ease-in-out;}
+
+ #contact .container form .submit:hover {
+ color:#FFF;
+ border:2px solid #dd4545;
+ background: #b43838;
+ cursor:pointer;}
+
+ #contact .container form .required {
+ color:#b43838;}
+ </style>
+</head>
+<body>
+
+<div class="sidenav">
+ <a href="/home">Home</a>
+ <a href="/logout">Logout</a></li>
+ <a href="/order">Order</a></li>
+</div>
+
+<div class="main">
+ <center>
+ <h1>ADD A NEW PRODUCT</h1>
+ </center>
+
+ <section id="contact">
+ <div class="container">
+ <form method="post" enctype="multipart/form-data">
+ <form method="post" enctype="multipart/form-data">
+ <h1>FOR DIGITAL INVENTORY</h1>
+ {% csrf_token %}
+ {{ form.as_p }}
+ <button name="add_product" type="submit" class="submit">Add Product</button>
+ </form>
+ </div>
+ </section>
+
+</div>
+</body>
+</html> \ No newline at end of file