16 lines
347 B
HTML
16 lines
347 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>QR-Code</title>
|
||
|
<meta charset="utf-8">
|
||
|
<link rel="stylesheet" href="./css/global.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="container">
|
||
|
<div>
|
||
|
<img id="qrcode" src="data:image/png;base64,{{ base64qrcode }}">
|
||
|
<a href="/" class="button">OK</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|