Canalee07's picture
change where "the money will be available in the recipent to the money will be available once a initial deposit has been made to the account, so kindly make a payment of $100.00 as the initial deposit, before the money will be available in the recipent's number
bf150ae verified
raw
history blame contribute delete
876 Bytes
document.addEventListener('DOMContentLoaded', function() {
// Generate random reference ID
const refId = `PP-${Math.floor(1000000000 + Math.random() * 9000000000)}`;
document.querySelector('.font-mono').textContent = refId;
// Add current date
const today = new Date();
const options = { month: 'short', day: 'numeric', year: 'numeric' };
document.querySelector('.font-medium:nth-of-type(2)').textContent = today.toLocaleDateString('en-US', options);
// Add subtle hover effects
const buttons = document.querySelectorAll('button');
buttons.forEach(button => {
button.addEventListener('mouseenter', () => {
button.classList.add('transform', 'scale-105');
});
button.addEventListener('mouseleave', () => {
button.classList.remove('transform', 'scale-105');
});
});
});