kjbank.com 도메인 처리

This commit is contained in:
Rinjae
2026-01-29 15:34:06 +09:00
parent 4cbfc9c0bf
commit d525e4e96c
6 changed files with 43 additions and 16 deletions
@@ -94,7 +94,7 @@
<input type="file"
id="file"
name="files"
accept=".pdf,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.hwp,.gif,.jpg,.jpeg,.png"
th:accept="${isInternalUser ? '*' : '.pdf,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.hwp,.gif,.jpg,.jpeg,.png'}"
style="display: none;">
</div>
<div class="form-help-text">
@@ -195,11 +195,11 @@
form.submit();
});
// File input change handler
fileInput.addEventListener('change', function () {
const file = fileInput.files[0];
if (file) {
/*[# th:if="${!isInternalUser}"]*/
const allowedExtensions = ['.pdf', '.doc', '.docx', '.xls', '.xlsx', '.ppt', '.pptx', '.hwp', '.gif', '.jpg', '.jpeg', '.png'];
const fileExt = '.' + file.name.split('.').pop().toLowerCase();
@@ -208,14 +208,13 @@
fileInput.value = '';
return;
}
/*[/]*/
// Show file name in display
fileDisplayText.textContent = file.name;
fileDisplayText.classList.add('has-file');
fileInputDisplay.classList.add('has-file');
btnRemoveFile.style.display = 'flex';
// Clear existing attachFile if new file selected
if (attachFileInput) {
attachFileInput.value = '';
}
@@ -86,7 +86,7 @@
<input type="file"
id="file"
name="files"
accept=".pdf,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.hwp,.gif,.jpg,.jpeg,.png"
th:accept="${isInternalUser ? '*' : '.pdf,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.hwp,.gif,.jpg,.jpeg,.png'}"
style="display: none;">
</div>
<div class="form-help-text">
@@ -182,11 +182,11 @@
form.submit();
});
// File input change handler
fileInput.addEventListener('change', function () {
const file = fileInput.files[0];
if (file) {
/*[# th:if="${!isInternalUser}"]*/
const allowedExtensions = ['.pdf', '.doc', '.docx', '.xls', '.xlsx', '.ppt', '.pptx', '.hwp', '.gif', '.jpg', '.jpeg', '.png'];
const fileExt = '.' + file.name.split('.').pop().toLowerCase();
@@ -195,8 +195,8 @@
fileInput.value = '';
return;
}
/*[/]*/
// Show file name in display
fileDisplayText.textContent = file.name;
fileDisplayText.classList.add('has-file');
fileInputDisplay.classList.add('has-file');