-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.24 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.24 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping App</title>
<link rel="icon" href="/assets/logo-192.jpg">
<link rel="stylesheet" href="style.css">
<link rel="manifest" href="./manifest.json">
<script src="dexie.min.js"></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js');
});
}
</script>
</head>
<body>
<nav>
<p>Lista mea</p>
<div class="copyright">
<h2> Copyright 2023 © Ionescu Andrei</h2>
</div>
</nav>
<div class="container">
<form id="itemForm" action="">
<label>
Numele produsului:
<input type="text" id="nameInput" required>
</label>
<label>
Cantitate
<input type="number" id="quantityInput" value="1">
</label>
<label>
Preţ:
<input type="text" id="priceInput" value="0">
</label>
<button type="submit" id="addItemButton"> Adaugă produsul </button>
</form>
</div>
<div id="itemsDiv"></div>
<div id="totalPriceDiv"></div>
<script src="index.js"></script>
</body>
</html>