-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (28 loc) · 1.73 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simple Generator for QR-Bill</title>
</head>
<body>
<a href="https://github.com/rsalzer/simple-qrbill">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
</a>
<h2>Simple Generator for QR-Bill</h2>
<p>Using Googles QR-Generator to create a simple CH-QR-Bill</p>
IBAN:<input id="iban" placeholder="CH1234567890123456789" value="CH0983019ROBERTSALZER" type="text" size="24"><br/>
Name:<input id="name" placeholder="Vorname Name" value="Robert Salzer" type="text"/><br/>
Strasse:<input id="street" placeholder="Beispielstrasse" value="Beispielstrasse" type="text"/><br/>
Hausnummer:<input id="housenumber" placeholder="1" value="1" type="text"/><br/>
PLZ:<input id="plz" placeholder="8001" value="8001" type="text"/><br/>
Ort:<input id="place" placeholder="Zürich" value="Zürich" type="text"/><br/>
CHF-Betrag:<input id="amount" placeholder="5.00" value="5.00" type="text"/><br/>
Zahlungsgrund:<input id="reason" placeholder="Zahlungsgrund" value="Beispielzahlung" type="text" /><br/>
<button onclick="createQRCode()">Generieren</button><br/>
<a href="#" id="qrbill">Direktlink für Apps, welche qrbill:// unterstützen</a>
<br/>
<img id="qr"/>
<script src="script.js"></script>
</body>
</html>