muhammad_nasif

product_info.html

Dec 10th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.00 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="logout">Log Out</a>
  22.  
  23. </nav>
  24.  
  25.  
  26. <div class="container">
  27.     <div class="jumbotron">
  28.  
  29.  
  30.         <h1  class="text-center">Add Product Here</h1>
  31.  
  32.  
  33.         <form method="post" action="">
  34.             {% csrf_token %}
  35.             <br>
  36.             <div class="form-row">
  37.                 <div class="col">
  38.                     <input type="text" class="form-control" placeholder="Product Name" name="product_name">
  39.                 </div>
  40.             </div>
  41.             <br>
  42.             <div class="form-row">
  43.                 <div class="col">
  44.                     <input type="number" class="form-control" placeholder="Total Product" name="total_product">
  45.                 </div>
  46.                 <div class="col">
  47.                     <input type="text" class="form-control" placeholder="Description" name="description">
  48.                 </div>
  49.             </div>
  50.             <br>
  51.             <div class="form-row">
  52.                 <div class="col">
  53.                     <input type="number" class="form-control" placeholder="Price" name="price">
  54.                 </div>
  55.                 <div class="col">
  56.                     <input type="number" class="form-control" placeholder="Warranty" name="warranty">
  57.                 </div>
  58.                 <div class="col">
  59.                     <input type="number" class="form-control" placeholder="Buying Price" name="buying_price">
  60.                 </div>
  61.             </div>
  62.             <br>
  63.             <div class="text-center">
  64.                 <button type="submit" class="btn btn-primary">Submit</button>
  65.             </div>
  66.         </form>
  67.  
  68.     </div>
  69. </div>
  70.  
  71.  
  72. </body>
  73. <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
  74.        integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
  75.        crossorigin="anonymous"></script>
  76. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
  77.        integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
  78.        crossorigin="anonymous"></script>
  79. <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
  80.        integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
  81.        crossorigin="anonymous"></script>
  82.  
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment