Aleksmorshen commited on
Commit
ada8f46
·
verified ·
1 Parent(s): e2876c9

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +11 -0
index.html CHANGED
@@ -9,6 +9,8 @@
9
  <body>
10
  <div class="container">
11
  <h1>Система учета товаров</h1>
 
 
12
  <form id="productForm">
13
  <input type="text" id="productName" placeholder="Название товара" required>
14
  <input type="number" id="purchasePrice" placeholder="Приходная цена" required>
@@ -16,6 +18,8 @@
16
  <input type="number" id="quantity" placeholder="Остаток" required>
17
  <button type="submit">Добавить товар</button>
18
  </form>
 
 
19
  <table id="productTable">
20
  <thead>
21
  <tr>
@@ -30,6 +34,13 @@
30
  <!-- Строки с товарами будут добавляться сюда -->
31
  </tbody>
32
  </table>
 
 
 
 
 
 
 
33
  </div>
34
  <script src="script.js"></script>
35
  </body>
 
9
  <body>
10
  <div class="container">
11
  <h1>Система учета товаров</h1>
12
+
13
+ <!-- Форма добавления товара -->
14
  <form id="productForm">
15
  <input type="text" id="productName" placeholder="Название товара" required>
16
  <input type="number" id="purchasePrice" placeholder="Приходная цена" required>
 
18
  <input type="number" id="quantity" placeholder="Остаток" required>
19
  <button type="submit">Добавить товар</button>
20
  </form>
21
+
22
+ <!-- Таблица товаров -->
23
  <table id="productTable">
24
  <thead>
25
  <tr>
 
34
  <!-- Строки с товарами будут добавляться сюда -->
35
  </tbody>
36
  </table>
37
+
38
+ <!-- Статистика продаж -->
39
+ <div class="stats">
40
+ <h2>Статистика продаж за месяц</h2>
41
+ <p>Общее количество проданных товаров: <span id="totalSold">0</span></p>
42
+ <p>Общая выручка: <span id="totalRevenue">0</span> руб.</p>
43
+ </div>
44
  </div>
45
  <script src="script.js"></script>
46
  </body>