Initial commit

This commit is contained in:
gmarco 2025-03-09 08:50:22 +01:00
commit 55f4b4f9d5
3 changed files with 159 additions and 0 deletions

12
includes/inc-bottom.php Normal file
View file

@ -0,0 +1,12 @@
<script>
function Copy(param) {
var copyText = document.getElementById(param);
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices
navigator.clipboard.writeText(copyText.value);
// alert("Copied: " + copyText.value);
}
</script>
</body></html>