added reading to the file, msi works on windows only. exe works if there is exiftool

This commit is contained in:
2024-06-19 14:40:32 +03:00
parent aa41b83964
commit afa56cb83e
5 changed files with 101 additions and 16 deletions

View File

@@ -236,4 +236,17 @@ input[type="file"] {
#totalus {
background-color: #6a568b;
border-radius: 15px;
}
.form-container {
position: fixed; /* Fix position on the screen */
top: 0; /* Position at the top */
left: 0; /* Position at the left */
width: 100%; /* Full width */
height: 100%; /* Full height */
background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
z-index: 9999; /* Make it appear above other elements */
overflow: auto; /* Enable scroll if needed */
display: none; /* Center the form vertically */
align-items: center; /* Center the form vertically */
justify-content: center; /* Center the form horizontally */
}

View File

@@ -116,4 +116,8 @@ function scriptPackage(rowid, extracommand, line){
}
function convertHtml(dt){
return dt.replace("")
}
function showContainer(className){
classShow = document.getElementsByClassName(className)[0];
classShow.style.display = classShow.style.display=="flex"?"none":"flex";
}