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.
33 lines
829 B
33 lines
829 B
<!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 name="printing" cols="42" rows="30">{{ plaintext }}</textarea>
|
|
<br>
|
|
<br>
|
|
<input class="submit" type="submit" value="print"/>
|
|
</form>
|
|
|
|
<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>
|
|
|