|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang='en'>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>TeleVex (print)</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='stylesheet.css')}}">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main">
|
|
|
|
|
|
|
|
<!-- <h1>print, <a href="/printed/">printed</a></h1> -->
|
|
|
|
|
|
|
|
<div id="print">
|
|
|
|
<h2>Plain Text Printing Point (ASCII only)</h2>
|
|
|
|
<form action="" method="GET">
|
|
|
|
<textarea id="normal" name="normal" cols="48">{{ plaintext }}</textarea>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<input class="submit" type="submit" value="print"/>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<form action="" method="GET">
|
|
|
|
<textarea id="big" name="big" cols="48">{{ plaintext }}</textarea>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<input class="submit" type="submit" value="print"/>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<h2>Image printing access point (png, jpg, gif)</h2>
|
|
|
|
<form action="" method="POST" enctype=multipart/form-data>
|
|
|
|
<input type="file" name="img" accept=".png, .jpg, .gif">
|
|
|
|
<br><br>
|
|
|
|
<input class="submit" type="submit" value="print"/>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|