-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
44 lines (29 loc) · 1.03 KB
/
index.php
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
<html>
<head>
<title>Batch QR Code Generator</title>
<style>
body{
text-align: center;
font-family: Arial,sans-serif;
}
textarea{
width: 600px;
height: 400px;
}
img{
height: 400px;
}
</style>
</head>
<body>
<h1>Batch QR Code Generator</h1>
<p>The below form takes 5 pipe ( | ) separated values per line as defined by the below image. The URL will automatically be shortened via bit.ly. Please use Chrome or Safari for the best results when printing.</p>
<img src="./example.png">
<p>So the input that generated the image above was: <br> "SC13 Technical Program - Poster|http://example.com/|#1|ACM|Speedup and Numerical Evaluation of Multiple-Precision Krylov Subspace Method Using GPU Cluster for Large-Sparse Linear System"</p>
<form action="action.php" method="POST">
<textarea name="input"></textarea>
<br><br>
<input type="submit">
</form>
</body>
</html>