Experimental communication tools (televex screen + televex print) https://televex.vvvvvvaria.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

41 lines
1.0 KiB

<!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')}}">
</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" rows="30">{{ plaintext }}</textarea>
<br>
<br>
<input class="submit" type="submit" value="print"/>
</form>
<form action="" method="GET">
<textarea id="big" name="big" cols="8" rows="10">{{ 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>