-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (68 loc) · 2.18 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
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
<!Doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Make me a QR Code!</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="styles.css" type="text/css" rel="stylesheet" />
<link rel="Shortcut Icon" href="" />
<link rel="alternate" type="application/rss+xml" title="" href="" />
</head>
<body>
<div id="wrapper">
<div id="content">
<form id="qr-form" method="post" action="">
<h1>QR Code Settings</h1>
<p>
<label>QR Type</label>
<input type="radio" name="type" value="url" /> URL
<input type="radio" name="type" value="text_content" /> Text
<input type="radio" name="type" value="telephone" /> Telephone Number
<input type="radio" name="type" value="sms" /> SMS
</p>
<p id="url" class="type-detail">
<label>URL</label>
<input type="text" name="url" value="" />
</p>
<p id="text_content" class="type-detail">
<label>Text</label>
<textarea rows="3" cols="30" name="text_content"></textarea>
</p>
<p id="telephone" class="type-detail">
<label>Telephone Number</label>
<input type="text" name="telephone_number" value="" />
</p>
<p id="sms" class="type-detail">
<label>Telephone Number</label>
<input type="text" name="sms_telephone_number" value="" />
<label>Message</label>
<textarea rows="3" cols="30" name="sms_text_content"></textarea>
</p>
<p>
<label form="size">Image Size (px square)</label>
<select name="size" id="size">
<option value="500">500</option>
<option value="400">400</option>
<option value="300">300</option>
<option value="200">200</option>
<option value="150">150</option>
<option value="100">100</option>
<option value="75">75</option>
<option value="50">50</option>
</select>
</p>
<p>
<input type="submit" name="submit" value="Make the code!" />
</p>
</form>
<div id="qr-code">
<h2>Your QR Code</h2>
<img src="" id="qr-image" alt="QR Code" />
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script src="functions.js"></script>
</body>
</html>