Initial commit

This commit is contained in:
2025-09-17 01:43:51 -03:00
commit df0bf77ba7
15 changed files with 1417 additions and 0 deletions

11
assets/js/frontend.js Normal file
View File

@@ -0,0 +1,11 @@
document.addEventListener('DOMContentLoaded', function() {
const fileInput = document.getElementById('sts_ticket_attachment');
if (fileInput) {
fileInput.addEventListener('change', function() {
const fileNameSpan = document.getElementById('sts-file-name');
if (this.files.length > 0) {
fileNameSpan.textContent = this.files[0].name;
}
});
}
});