File size: 1,451 Bytes
2ebd750
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Система учета товаров</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <h1>Система учета товаров</h1>
        <form id="productForm">
            <input type="text" id="productName" placeholder="Название товара" required>
            <input type="number" id="purchasePrice" placeholder="Приходная цена" required>
            <input type="number" id="salePrice" placeholder="Отпускная цена" required>
            <input type="number" id="quantity" placeholder="Остаток" required>
            <button type="submit">Добавить товар</button>
        </form>
        <table id="productTable">
            <thead>
                <tr>
                    <th>Название</th>
                    <th>Приходная цена</th>
                    <th>Отпускная цена</th>
                    <th>Остаток</th>
                    <th>Действия</th>
                </tr>
            </thead>
            <tbody>
                <!-- Строки с товарами будут добавляться сюда -->
            </tbody>
        </table>
    </div>
    <script src="script.js"></script>
</body>
</html>