Add /index.html and /image.html

This commit is contained in:
Joscha 2024-03-10 00:52:49 +01:00
parent 3cec866ba2
commit a51f3fa9b5
7 changed files with 241 additions and 1 deletions

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>TP: Image</title>
</head>
<body>
<h1>Upload an image</h1>
<form action="image" method="post" enctype="multipart/form-data">
<ol>
<li><input type="file" name="image" /></li>
<li><button>Print!</button></li>
<li>Come back to this page</li>
</ol>
</form>
</body>
</html>