Merge branch 'louie-kyc' of https://code.obanana.io/Obanana.Corporation/obananapay_admin into louie-kyc
This commit is contained in:
commit
4c2a502756
|
@ -100,6 +100,7 @@
|
|||
|
||||
<div class="section form-container">
|
||||
<h2>Confirm KYC Details</h2>
|
||||
<div class="form-container">
|
||||
<div class="checkboxFormContainer">
|
||||
<form id="checkboxForm">
|
||||
<div class="checkbox-container">
|
||||
|
@ -137,6 +138,17 @@
|
|||
</div>
|
||||
|
||||
<script>
|
||||
var imageContainer = document.getElementById('zoomContainer');
|
||||
var originalTransform = window.getComputedStyle(imageContainer).getPropertyValue('transform');
|
||||
|
||||
imageContainer.addEventListener('mouseenter', function() {
|
||||
imageContainer.style.transform = 'scale(1.5)';
|
||||
});
|
||||
|
||||
imageContainer.addEventListener('mouseleave', function() {
|
||||
imageContainer.style.transform = originalTransform;
|
||||
});
|
||||
|
||||
function handleCheckboxChange() {
|
||||
// Check the status of checkboxes and enable/disable the "Accept" button
|
||||
var areAllChecked = document.querySelectorAll('#checkboxForm input[type="checkbox"]:checked').length === 4;
|
||||
|
|
Loading…
Reference in New Issue