added more preview pages and more templates

This commit is contained in:
2026-07-21 07:10:03 -05:00
parent c6119ffdf5
commit b19fdee30d
3726 changed files with 651487 additions and 6169 deletions
@@ -0,0 +1,13 @@
/*---------- Payment Methods ----------*/
// Wait for the document to be ready
$(document).ready(function () {
// Add a click event listener to all labels inside the "payment" class
$(".payment .radio-label").click(function () {
// Remove the "active" class from all payment bodies
$(".payment .payment-body").removeClass("active");
// Add the "active" class to the next sibling with class "payment-body"
$(this).next(".payment-body").addClass("active");
});
});