-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexVivofeb19.html
More file actions
242 lines (200 loc) Β· 6.28 KB
/
indexVivofeb19.html
File metadata and controls
242 lines (200 loc) Β· 6.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow">
<meta name="description" content="Kitchen Manager helps track kitchen expenses, manage entries, and export PDF invoices easily.">
<title>Ghar Manager - Kitchen</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="style.css">
<!-- PWA -->
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#667eea">
<!-- Icons -->
<script src="https://code.iconify.design/3/3.1.1/iconify.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3689994270580853"
crossorigin="anonymous"></script>
</head>
<body class="light">
<!-- ================= HEADER ================= -->
<header class="topbar">
<div class="header-left">
<span id="premiumBadge" class="premium-badge">FREE</span>
<h2>
<span class="iconify" data-icon="mdi:food-apple"></span>
Kitchen Manager
</h2>
</div>
<div class="header-right">
<button id="installBtn" class="small-btn">
<i class="fas fa-download"></i>
</button>
<button id="themeToggle" class="small-btn">π</button>
<button id="manualRefresh" class="small-btn">
π
</button>
</div>
</header>
<!-- Top Ad -->
<div style="margin:10px 0;">
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-3689994270580853"
data-ad-slot="XXXXXXX"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
</div>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<!-- ================= UPDATE BANNER ================= -->
<div id="updateBanner">
π App Updated Successfully!
</div>
<!-- ================= MAIN CONTAINER ================= -->
<section class="container">
<!-- ENTRY CARD -->
<div class="card">
<div class="row-2">
<div class="form-group">
<label>Category Type</label>
<select id="typeCategory">
<option value="Open">Open</option>
<option value="Packet">Packet</option>
<option value="Bottle">Bottle</option>
</select>
</div>
<div class="form-group">
<label>Item Category</label>
<select id="mainCategory">
<option value="Vegetable">Vegetable</option>
<option value="Spices">Spices</option>
<option value="Dairy">Dairy</option>
</select>
</div>
</div>
<div class="form-group">
<label>Select Item</label>
<select id="itemSelect"></select>
</div>
<div class="row-2">
<div class="form-group">
<label>Quantity</label>
<input type="text" id="quantity" placeholder="Eg: 2 kg">
</div>
<div class="form-group">
<label>Total Amount βΉ</label>
<input type="number" id="amount">
</div>
</div>
<button onclick="addKitchenEntry()">β Add Entry</button>
</div>
<!-- HISTORY -->
<div class="card">
<h3>History</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Date</th>
<th>Item</th>
<th>Qty</th>
<th>Type</th>
<th>Total βΉ</th>
<th>Delete</th>
</tr>
</thead>
<tbody id="kitchenTable"></tbody>
</table>
</div>
<div class="action-buttons">
<button onclick="shareWhatsApp()">π€ WhatsApp</button>
<button id="pdfBtn" onclick="downloadPDF()">π PDF (Premium)</button>
<button onclick="shareApp()">π² Share App</button>
</div>
<div id="subscriptionCard" class="sub-card"></div>
<div id="premiumBox" class="premium-box">
<h4>π Premium Subscription</h4>
<p><strong>Plan:</strong> βΉ10 / 30 Days</p>
<p><strong>Name:</strong> Mr Ankush</p>
<img src="qr.JPG" alt="UPI QR" class="qr-img">
<!-- PAY BUTTON -->
<a
href="upi://pay?pa=8708986767@ybl&pn=Mr%20Ankush&am=10&cu=INR"
class="pay-btn"
>
π³ Pay βΉ10 Now
</a>
<!-- WHATSAPP PERSONAL -->
<a
href="https://wa.me/qr/3V2B2OVSZPOON1"
target="_blank"
class="whatsapp-btn"
>
π² Send Payment Screenshot
</a>
<!-- WHATSAPP COMMUNITY -->
<a
href="https://chat.whatsapp.com/KZCsrgoA8RHKKtEu30E3PA"
target="_blank"
class="community-btn"
>
π₯ Join WhatsApp Community
</a>
<!-- TELEGRAM -->
<a
href="https://t.me/infinityroastvedio"
target="_blank"
class="telegram-btn"
>
π’ Join Telegram Channel
</a>
<p style="margin-top:10px;font-size:13px;">
After completing your subscription, contact support for activation.
</p>
</div>
</div>
</section>
<!-- ================= INVOICE TEMPLATE ================= -->
<div id="invoiceTemplate">
<div style="text-align:center;">
<img src="https://cdn-icons-png.flaticon.com/512/1046/1046857.png" width="70">
<h2 style="color:#764ba2;">GHAR KITCHEN MANAGER</h2>
<p id="invoiceDate"></p>
</div>
<table border="1" width="100%" cellspacing="0" cellpadding="8">
<thead style="background:#667eea;color:white;">
<tr>
<th>Date</th>
<th>Item</th>
<th>Qty</th>
<th>Type</th>
<th>Total βΉ</th>
</tr>
</thead>
<tbody></tbody>
</table>
<h3 id="invoiceTotal" style="text-align:right;margin-top:20px;"></h3>
<div style="margin-top:40px;text-align:right;">
<p>Authorized Signature</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/0/0b/Signature.png" width="120">
</div>
</div>
<footer style="text-align:center;margin-top:20px;padding:15px;">
<a href="privacy.html">Privacy Policy</a> |
<a href="about.html">About</a> |
<a href="contact.html">Contact</a>
</footer>
<!-- Floating Share Button -->
<button onclick="shareApp()" class="fab share-btn">π€</button>
<!-- Libraries -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
<!-- App JS -->
<script src="app.js"></script>
</body>
</html>