mirror of
https://codeberg.org/mycelium/emojiquest.git
synced 2024-11-17 14:39:14 +00:00
make inputs required to prevent accidental submit
This commit is contained in:
parent
1ab0a78951
commit
4301455646
|
@ -45,9 +45,9 @@
|
||||||
<form method="POST">
|
<form method="POST">
|
||||||
<div>
|
<div>
|
||||||
<label for="shortcode">Emoji shortcode</label>
|
<label for="shortcode">Emoji shortcode</label>
|
||||||
<input type="text" id="shortcode" name="shortcode" placeholder="blobcatNotLikeThis">
|
<input type="text" id="shortcode" name="shortcode" placeholder="blobcatNotLikeThis" required>
|
||||||
<label for="url">Emoji URL</label>
|
<label for="url">Emoji URL</label>
|
||||||
<input type="text" id="url" name="url" placeholder="https://...">
|
<input type="text" id="url" name="url" placeholder="https://..." required>
|
||||||
</div>
|
</div>
|
||||||
<input type="submit">
|
<input type="submit">
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in a new issue