treebird/static/emoji_picker.html
nekobit ebbccc83f0 Emoji picker categories and generator
FossilOrigin-Name: fa2704e8ed5cb1d0a4cf95330caea0b447832ef0d61256243828212c50a209b6
2022-05-21 01:39:39 +00:00

83 lines
2.5 KiB
HTML

<div class="emoji-picker">
<table class="tabs ui-table">
<tr>
<td>
<form action="#id" method="post">
<input type="hidden" name="emojoindex" value="0">
<input class="tab-btn btn btn-alt %s" type="submit" value="😃">
</form>
</td>
<td>
<form action="#id" method="post">
<input type="hidden" name="emojoindex" value="%d">
<input class="tab-btn btn btn-alt %s" type="submit" value="🐻">
</form>
</td>
<td>
<form action="#id" method="post">
<input type="hidden" name="emojoindex" value="%d">
<input class="tab-btn btn btn-alt %s" type="submit" value="🍔">
</form>
</td>
<td>
<form action="#id" method="post">
<input type="hidden" name="emojoindex" value="%d">
<input class="tab-btn btn btn-alt %s" type="submit" value="🚀">
</form>
</td>
<td>
<form action="#id" method="post">
<input type="hidden" name="emojoindex" value="%d">
<input class="tab-btn btn btn-alt %s" type="submit" value="⚽">
</form>
</td>
<td>
<form action="#id" method="post">
<input type="hidden" name="emojoindex" value="%d">
<input class="tab-btn btn btn-alt %s" type="submit" value="🔧">
</form>
</td>
<td>
<form action="#id" method="post">
<input type="hidden" name="emojoindex" value="%d">
<input class="tab-btn btn btn-alt %s" type="submit" value="🔢">
</form>
</td>
<td>
<form action="#id" method="post">
<input type="hidden" name="emojoindex" value="%d">
<input class="tab-btn btn btn-alt %s" type="submit" value="🎌">
</form>
</td>
</tr>
</table>
<div class="emoji-picker-emojos">
%s
</div>
<table class="navigation ui-table">
<tr>
<td class="nav-prev btn">
<form action="#id-%s" method="post">
<label class="pointer">
<input type="hidden" name="emojoindex" value="%u">
<span class="nav-btn %s">Previous</span>
<input type="submit" class="hidden">
</label>
</form>
</td>
<td class="nav-next btn">
<form action="#id-%s" method="post">
<label class="pointer">
<input type="hidden" name="emojoindex" value="%u">
<span class="nav-btn">Next</span>
<input type="submit" class="hidden">
</label>
</form>
</td>
</tr>
</table>
</div>