29 lines
977 B
HTML
29 lines
977 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.png">
|
|
<script src="script.mjs" type="module"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Wall Art Server</h1>
|
|
<p>
|
|
Upload a <code>.pixil</code> file to display on the wall.
|
|
Animations will loop at 2 frames per second,
|
|
for up to 8 frames.
|
|
</p>
|
|
<p>
|
|
<a href="https://pixilart.com/">Pixilart</a> generates these files.
|
|
</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.png" alt="Current image">
|
|
</p>
|
|
</body>
|
|
</html> |