-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (94 loc) · 3.72 KB
/
index.html
File metadata and controls
109 lines (94 loc) · 3.72 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Qr Genarator</title>
<link rel="shortcut icon" href="fav_icon.png" type="image/x-icon">
<script src="js/jquery.min.js"></script>
<script src="js/qrcode.js"></script>
<script src="js/custom.js"></script>
</head>
<style>
#umrandung {
--tw-bg-opacity: 1;
background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
height: 215px;
width: 215px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.4/tailwind.min.css">
<body onload="init()" class="grid justify-items-center bg-gray-900 text-white">
<div>
<p class="bg-clip-text text-transparent bg-gradient-to-r from-green-400 to-blue-500 text-8xl mt-2" href="https://github.com/tayron1/Node-Mail-Spammer">
QR-Code Generator
</p>
<a class="grid justify-items-center mt-10 text-gray-400 mb-16" href="https://github.com/Luna-devv/QR-code-generator">
an open source project by Luna and Yasuakii.
</a>
<tr>
<td>First name</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" type="text" id="vorname" name="vorname" placeholder="Luna"></td><br><br>
</tr>
<tr>
<td>Last name</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" type="text" id="nachname" name="nachname" placeholder="Someones"></td><br><br>
</tr>
<tr>
<td>Email</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" type="text" id="email" name="email" placeholder="spam@lunana.xyz"></td><br><br>
</tr>
<tr>
<td>Phone</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" id="telefon" type="text" name="telephonenummer" placeholder="+352 43 031"></td><br><br>
</tr>
<tr>
<td>Mobile</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" id="mobil" type="text" name="mobil" placeholder="+352 43 031"></td><br><br>
</tr>
<tr>
<td>Occupation</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" type="text" id="firma" name="firma" placeholder="Discord"></td><br><br>
</tr>
<tr>
<td>Street</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" type="text" id="strasse" name="addresse" placeholder="Boulevard Konrad Adenauer"></td><br><br>
</tr>
<tr>
<td>Post lead number</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" type="text" id="plz" name="addresse" placeholder="2925"></td><br><br>
</tr>
<tr>
<td>Location</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" type="text" id="ort" name="addresse" placeholder="Luxemburg"></td><br><br>
</tr>
<tr>
<td>Website</td><br>
<td><input class="bg-gray-700 focus:bg-gray-600 rounded-md p-2" size="100" type="text" id="website" name="website" placeholder="https://lunana.xyz"></td><br><br>
</tr>
</div>
<br>
<div>
<input class="bg-red-500 bg-opacity-100 text-2xl hover:bg-red-400 rounded-lg p-2" type="button" name="generate" value="Generate" onclick="generateQR()" />
<input class="bg-red-500 bg-opacity-100 text-2xl hover:bg-red-400 rounded-lg p-2" type="button" name="generate" value="Download" onclick="downloadQR1()" />
</div>
<br>
<tr>
<td>
<div id="umrandung">
<div id="svg">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200"
height="200">
<g id="qrcode" />
</svg>
</div>
</div>
</td>
</tr>
<br>
</body>
</html>