This commit is contained in:
2026-04-30 16:29:16 +08:00
parent 0ddcfcf7c6
commit e437b178ae
2 changed files with 34 additions and 5 deletions

View File

@@ -188,6 +188,9 @@
<option value="mobikwik_per">MobiKwik Personal</option>
<option value="freecharge_per">Freecharge Personal</option>
</optgroup>
<optgroup label="── Other ──">
<option value="boi">BOI Bank</option>
</optgroup>
</select>
</div>
<div>
@@ -204,7 +207,7 @@
</div>
<div>
<label>Amount ₹</label>
<input id="amount" type="number" value="51" min="50" step="1">
<input id="amount" type="number" value="10" min="10" step="1">
</div>
<div style="background:#f9f9f9;border-radius:10px;padding:12px;display:flex;flex-direction:column;gap:6px;">
<div style="display:flex;justify-content:space-between;font-size:13px;">
@@ -269,7 +272,7 @@
},
phonepe_per: {
label: 'PhonePe Personal',
pa: '7528905079@ybl', pn: 'Gurvir Singh',
pa: '7796806838@ibl', pn: '',
extra: () => '',
warn: null,
},
@@ -281,7 +284,14 @@
},
freecharge_per: {
label: 'Freecharge Personal',
pa: '9124307439@freecharge', pn: 'Niranjan Mishra',
pa: 'levi11111@freecharge', pn: 'Niranjan Mishra',
extra: () => '',
warn: null,
},
boi: {
label: 'BOI Bank',
pa: 'boim-475447851314@boi',
pn: '',
extra: () => '',
warn: null,
},
@@ -351,7 +361,7 @@
const walletKey = document.getElementById('wallet').value;
const app = document.getElementById('app').value;
const am = document.getElementById('amount').value || '51';
const am = document.getElementById('amount').value || '10';
const w = WALLETS[walletKey];
const warnEl = document.getElementById('warn-box');