20 lines
553 B
HTML
20 lines
553 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Dither</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<script src="index.js"></script>
|
|
<form action="http://localhost:8080/dither" method="post" enctype="multipart/form-data">
|
|
<input name="source" type="file" accept="image/jpeg, image/png" />
|
|
<input type="submit" />
|
|
</form>
|
|
</body>
|
|
|
|
</html> |