css,mail,tel,url,calendar fertig

This commit is contained in:
2023-11-05 22:28:37 +01:00
parent 216266191c
commit 8fd88f1805
16 changed files with 350 additions and 81 deletions

View File

@@ -1,20 +1,15 @@
<!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>
{% extends "base.html" %}
{% block inhalt %}
<p>
<b>folgendes wurde im QR-Code codiert:</b><br>
{{ data }} <br>
<br>
<!--suppress HtmlUnknownTarget -->
<img src="{{ data|qrcode }}" alt="QR-Code f&uuml;r {{ data }}">
<img src="{{ data|qrcode(fit=True, box_size=15, border=2, ) }}" alt="QR-Code f&uuml;r {{ data }}">
</p>
<p style="text-align: center; font-size: 1.5em;">
<p>
<a href="./">Noch einmal bitte!</a>
</p>
{% endblock %}
</body>
</html>