-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 2.63 KB
/
Copy pathindex.html
File metadata and controls
53 lines (47 loc) · 2.63 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
<!DOCTYPE html>
<html>
<head>
<title>Free WiFi QR Code Generator - Generate QR Codes for Wi-Fi Networks</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="keywords" content="free WiFi, QR code generator, Wi-Fi networks, wireless network, ssid, password, QR password, QR code reader, qr code maker, qr code scanner, how to make qr code of wifi, wifi network qr code, android qr code of wifi, wifi network hack, password, hacking, wifi netwrok scan, wifi qr code on pc, free wifi qr code, qr code of wifi, wifi network qr code">
<meta name="description" content="Generate free WiFi QR codes for easy network access. Create QR codes for Wi-Fi networks with our user-friendly generator. Simply enter your SSID and password, and generate a QR code to share with others. Convenient and secure wireless network sharing.">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta http-equiv="refresh" content="100">
<!-- Favicon -->
</head>
<body>
<div class="container">
<h1>Wifi QR Code Generator Free</h1>
<div class="input-field">
<label for="ssidInput">SSID</label>
<div class="input-wrapper">
<input type="text" id="ssidInput" placeholder="Enter SSID">
<span class="clear-icon">×</span>
</div>
</div>
<div class="input-field">
<label for="passwordInput">Password</label>
<div class="input-wrapper">
<input type="password" id="passwordInput" placeholder="Enter password">
<span class="clear-icon">×</span>
</div>
</div>
<button id="generateBtn">Generate QR Code</button>
<div id="qrCodeContainer" class="qr-code-container"></div>
<div class="action-buttons">
<button id="exportBtn" style="display: none;">Export</button>
<button id="exportJpegBtn" style="display: none;">Export as JPEG</button>
<button id="convertBtn" style="display: none; background-color: #e5322d;">Convert</button>
</div>
<div id="footer">
© 2014-2019 All Rights Reserved.
</div>
</div>
<!-- Include the QR code library -->
<script src="https://cdn.rawgit.com/davidshimjs/qrcodejs/gh-pages/qrcode.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.3.2/html2canvas.min.js"></script>
<script src="script.js"></script>
</body>
</html>