optimierungen

This commit is contained in:
2023-11-02 15:45:09 +01:00
parent 3734fa2277
commit 216266191c
10 changed files with 18 additions and 31 deletions

20
app/templates/qr.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>QR-Code-Generator</title>
</head>
<body>
<H1 style="text-align: center; background-color: #eee; border-radius: .5em;">QRCode-Generator</H1>
<p style="text-align: center; font-size: 2em;">
<b>folgender Text wurde im QR-Code codiert:</b><br>
{{ data }} <br>
<br>
<!--suppress HtmlUnknownTarget -->
<img src="{{ data|qrcode }}" alt="QR-Code f&uuml;r {{ data }}">
</p>
<p style="text-align: center; font-size: 1.5em;">
<a href="./">Noch einmal bitte!</a>
</p>
</body>
</html>