-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (47 loc) · 2.06 KB
/
index.html
File metadata and controls
54 lines (47 loc) · 2.06 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
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tailor Shop Tracker</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Tailor Shop Suit Entry</h2>
<form id="suitForm">
<label>Name: <input name="name" /></label>
<label>Sr. No: <input name="Srno" /></label>
<label>Address: <input name="address" /></label>
<label>Length (लंबाई): <input name="लंबाई" /></label>
<label>Chest (छाती): <input name="छाती" /></label>
<label>Waist (कमर): <input name="कमर" /></label>
<label>Hip (हिप): <input name="हिप" /></label>
<label>Ghera (घेरा): <input name="घेरा" /></label>
<label>Chak (चाक): <input name="चाक" /></label>
<label>Tira (तीरा): <input name="तीरा" /></label>
<label>Baju (भाजु): <input name="भाजु" /></label>
<label>Gala (गला): <input name="गला" /></label>
<label>Salwar (सलवार): <input name="सलवार" /></label>
<label>Mohri (मोहरी): <input name="मोहरी" /></label>
<label>Thigh (थाई): <input name="थाई" /></label>
<label>Price: <input name="Price" /></label>
<label>Quantity: <input name="quantity" /></label>
<button type="submit">Add Suit</button>
<label>Status:</label>
<label><input type="radio" name="status" value="in processing" checked> In Processing</label>
<label><input type="radio" name="status" value="complete"> Complete</label>
</form>
<div class="action-buttons">
<button onclick="exportToPDF()">Export to PDF</button>
<button onclick="undoLastDelete()">Undo Delete</button>
</div>
<input type="text" id="search" placeholder="Search by Name or Sr. No">
<h3>All Suits</h3>
<div id="suitList"></div>
<div class="modal" id="detailModal">
<span class="modal-close" onclick="closeModal()">✖</span>
<div id="modalContent"></div>
</div>
<script src="script.js"></script>
</body>
</html>