This commit is contained in:
naielv
2025-08-27 15:47:54 +02:00
parent e9342b6fec
commit b64a9bc78b
3 changed files with 37 additions and 3 deletions

View File

@@ -987,11 +987,12 @@ function TS_IndexElement(
});
}
function BuildQR(mid) {
function BuildQR(mid, label) {
return `
<span style="border: 2px dashed black; padding: 10px; display: inline-block; background: white; border-radius: 7px; text-align: center;">
<b>TeleSec AztecQR</b>
<br>${toHtml(aztec(mid),[6,6])}
<br>${toHtml(aztec(mid),[6,6])}<br>
<small>${label}</small>
</span>
`
}