yii2-netdisk/web/js/user-info.js
Chenx221 e944d3c781
totp前端设计(2/2)
二步验证功能(2/2)
*测试时发现了其他用户无法正常访问所有功能,这个问题下次再说
2024-03-07 20:35:50 +08:00

22 lines
653 B
JavaScript

$(document).ready(function () {
$('#deleteConfirm').change(function () {
if (this.checked) {
$('#deleteButton').prop('disabled', false);
} else {
$('#deleteButton').prop('disabled', true);
}
});
$('#totp-enabled').change(function () {
if (this.checked) {
$('#totpSetupModal').modal('show');
}else {
$.post('index.php?r=user%2Fremove-two-factor', function () {
location.reload();
});
}
});
$('#totpSetupModal').on('hidden.bs.modal', function () {
$('#totp-enabled').prop('checked', false);
});
});