muhammad_nasif

product_info.html

Dec 11th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.18 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6.  
  7.     <!-- Bootstrap CSS -->
  8.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
  9.          integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
  10.  
  11.     <title>Product Information</title>
  12. </head>
  13. <body>
  14. <nav class="navbar justify-content-center navbar-dark bg-dark">
  15.     <a class="navbar-brand" href="home">Home</a>
  16.  
  17.     <a class="navbar-brand" href="sales_entry">Sales Entry</a>
  18.  
  19.     <a class="navbar-brand" href="product_info">Product Info</a>
  20.  
  21.     <a class="navbar-brand" href="check_stock">Check Stock</a>
  22.  
  23.     <a class="navbar-brand" href="sales_representative_status">Profile</a>
  24.  
  25.     <a class="navbar-brand" href="logout">Log Out</a>
  26.  
  27. </nav>
  28.  
  29.  
  30. <div class="container">
  31.     <div class="jumbotron">
  32.  
  33.  
  34.         <h1  class="text-center">Add Product Here</h1>
  35.  
  36.  
  37.         <form method="post" action="">
  38.             {% csrf_token %}
  39.             <br>
  40.             <div class="form-row">
  41.                 <div class="col">
  42.                     <input type="text" class="form-control" placeholder="Product Name" name="product_name" required>
  43.                 </div>
  44.             </div>
  45.             <br>
  46.             <div class="form-row">
  47.                 <div class="col">
  48.                     <input type="number" class="form-control" placeholder="Total Product" name="total_product" required>
  49.                 </div>
  50.                 <div class="col">
  51.                     <input type="text" class="form-control" placeholder="Description" name="description" required>
  52.                 </div>
  53.             </div>
  54.             <br>
  55.             <div class="form-row">
  56.                 <div class="col">
  57.                     <input type="number" class="form-control" placeholder="Price" name="price" required>
  58.                 </div>
  59.                 <div class="col">
  60.                     <input type="number" class="form-control" placeholder="Warranty" name="warranty">
  61.                 </div>
  62.                 <div class="col">
  63.                     <input type="number" class="form-control" placeholder="Buying Price" name="buying_price" required>
  64.                 </div>
  65.             </div>
  66.             <br>
  67.             <div class="text-center">
  68.                 <button type="submit" class="btn btn-primary">Submit</button>
  69.             </div>
  70.         </form>
  71.  
  72.     </div>
  73. </div>
  74.  
  75.  
  76. </body>
  77. <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
  78.        integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
  79.        crossorigin="anonymous"></script>
  80. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
  81.        integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
  82.        crossorigin="anonymous"></script>
  83. <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
  84.        integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
  85.        crossorigin="anonymous"></script>
  86.  
  87. </html>
Advertisement
Add Comment
Please, Sign In to add comment