dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit b39f94e09c3c9e1f26c3d257635d704e5483a19c
parent 49ac6866daaebf30c363554ef72ac957c069d9f9
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Sun, 24 Dec 2023 16:35:43 -0500

UI

Diffstat:
Mpkg/web/handlers/poker.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/web/handlers/poker.go b/pkg/web/handlers/poker.go @@ -593,7 +593,7 @@ func PokerUnSitHandler(c echo.Context) error { } func PokerSitHandler(c echo.Context) error { - html := hutils.HtmlCssReset + `<form method="post"><button style="height: 35px; width: 65px;">Sit</button></form>` + html := hutils.HtmlCssReset + `<form method="post"><button style="height: 35px; width: 65px;" title="Take seat"><img src="/public/img/throne.png" width="30" alt="sit" /></button></form>` authUser := c.Get("authUser").(*database.User) pos := utils.Clamp(utils.DoParseInt(c.Param("pos")), 1, poker.NbPlayers) - 1 roomID := poker.RoomID(c.Param("roomID"))