-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqr_toolpage.html
84 lines (55 loc) · 2.51 KB
/
qr_toolpage.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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="../Images//tulip.png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>GrowCulture</title>
<link rel="stylesheet" href="Css/qr_toolpage.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/qrcode.js"></script>
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<div class="sidebar-container" style="padding: 10px;">
<div class="sidebar-logo" style="margin: 10px;padding:20px">
GrowCulture
</div>
<ul class="sidebar-navigation">
<li class="header">Navigate tool</li>
<li>
<a href="qr_toolpage.html">
<i class="fa fa-home" aria-hidden="true"></i> Create QR Code
</a>
</li>
<li>
<a href="qr_toolpage2.html">
<i class="fa fa-tachometer" aria-hidden="true"></i> Scan QR Code
</a>
</li>
<li>
</ul>
</div>
<div class="content-container">
<div class="container-fluid">
<!-- Main component for a primary marketing message or call to action -->
<h4 style="background-color: black;color: white;">Enter the text/link to generate the QR Code :</h4>
<form onsubmit="encrypt();return false;">
<input type="text" id="qr" name="qr_text" placeholder="Input your text here">
</form>
<p id="to_dec"></p>
<div id="qrResult" style="height: 100px;width: 100px;margin: 15px;padding: 15px;">
</div>
<script type="text/javascript" src="JS/qr_t.js">
</script>
<a href="" download="Qr_Scanned" id="scanned">
<button class="btn btn-primary" type="submit">Download</button>
</a>
</div>
</div>
</div>
</body>
</html>