This repository has been archived on 2023-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
feuille/cgi/form.html

16 lines
514 B
HTML
Raw Normal View History

2022-11-21 10:43:47 +01:00
<!DOCTYPE html>
<html>
<head>
2022-11-21 10:52:06 +01:00
<title>feuille - socket-based pastebin</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
2022-11-21 10:43:47 +01:00
<body>
2022-11-21 10:52:06 +01:00
<h1>feuille</h1>
<h2>send a paste from this form</h2>
2022-11-21 10:43:47 +01:00
<form role="form" action="/cgi-bin/feuille.cgi" method="post" enctype="text/plain">
2022-11-21 10:52:06 +01:00
<textarea name="paste" style="font-family: monospace; width:98vw; height:70vh"></textarea>
2022-11-21 10:43:47 +01:00
<input type="submit" value="send paste">
</form>
</body>
</html>