-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.html
More file actions
24 lines (24 loc) · 761 Bytes
/
preview.html
File metadata and controls
24 lines (24 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<title>Label preview</title>
<link rel="icon" type="image/png" href="assets/ptprint.png" />
<link rel="apple-touch-icon-precomposed" href="assets/ptprint.png" />
<meta name="viewport" content="user-scalable=no, width=device-width" />
<style type="text/css">
body, a {
background: #000000;
color: #ffffff;
}
</style>
</head>
<body>
<div style="color:{{if .StatusOK}}green{{else}}red{{end}}">{{.Status}}</div>
<br />
<form action='/print' method='post'>
<input type='hidden' name='text' value='{{.Text}}' />
<img border=1 alt='{{.Text}}' src='data:image/png;base64,{{.Image}}' />
<br />
<input type='submit' value='Print' />
</form>
</body>
</html>