-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 1.82 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sort My Stuff</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="app">
<div id="intro">
<h1>Sort My Stuff</h1>
<button id="startBtn">Start Sorting</button>
</div>
<div id="itemClassification" style="display: none;">
<h2>Classify Your Item</h2>
<p>Is your item small/multiple or large/important?</p>
<button id="smallBtn">Small/Multiple</button>
<button id="largeBtn">Large/Important</button>
</div>
<div id="questionnaire" style="display: none;">
<h2>Item Details</h2>
<input type="text" id="itemName" placeholder="Enter item name">
<div id="questions"></div>
</div>
<div id="result" style="display: none;">
<h2>Result</h2>
<p id="resultText"></p>
<label for="actionSelect">Choose Action:</label>
<select id="actionSelect">
<option value="sell">Sell</option>
<option value="give away">Give Away</option>
<option value="repair">Repair</option>
<option value="recycle">Recycle</option>
<option value="keep">Keep</option>
</select>
<button id="saveBtn">Save Item</button>
<button id="resetBtn">Sort Another Item</button>
</div>
<div id="buttonContainer">
<button id="downloadBtn" style="display: none;">Download Inventory</button>
<div id="inventoryUpdatedMsg" style="display: none;">Inventory Updated</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>