wallart-server/web/index.html

26 lines
870 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wall Art Server</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="wallart.gif">
<script src="script.mjs" type="module"></script>
</head>
<body>
<h1>Wall Art Server</h1>
<p>
Upload a <code>.gif</code> file to display on the wall.
Animations will loop at 2 frames per second,
for up to 8 frames.
</p>
<form action="upload" method="post" enctype="multipart/form-data">
<input type="file" name="image">
<input type="submit" value="Upload">
</form>
<p>
<img id="wallart" src="wallart.gif" alt="Current image">
</p>
</body>
</html>