Skip to content

Commit

Permalink
Fix input type
Browse files Browse the repository at this point in the history
  • Loading branch information
inventionpro authored Oct 30, 2024
1 parent 436d238 commit 47453f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tool/image.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</head>
<body>
<h1>Image editing</h1>
<input type="file" aria-label="Image file input">
<input type="file" aria-label="Image file input" accept="image/*">
<select aria-label="Image effect">
<option>ad</option>
<option>ascii</option>
Expand All @@ -49,7 +49,7 @@ <h1>Image editing</h1>
<option>uncover</option>
<option>wanted</option>
</select>
<button onclick="send()" accept="image/*">Filter</button>
<button onclick="send()">Filter</button>
<br>
<img style="max-width:60vw;max-height:60vh;" alt="Image with applied effect">
<a id="dl" download style="display:none">Download</a>
Expand Down

0 comments on commit 47453f6

Please sign in to comment.