style
Some checks are pending
Test / test (push) Waiting to run

This commit is contained in:
Cam Zalewski 2026-05-20 15:16:55 +00:00
parent d40640a648
commit 652b9ddcce
2 changed files with 3 additions and 3 deletions

View file

@ -172,7 +172,7 @@ func sidebarMenu(r *ui.Request) Node {
header("Account"),
If(r.IsAuth, MenuLink(r, icons.Exit(), "Logout", routenames.Logout)),
If(!r.IsAuth, MenuLink(r, icons.Enter(), "Login", routenames.Login)),
If(!r.IsAuth, MenuLink(r, icons.UserPlus(), "Register", routenames.Register)),
//If(!r.IsAuth, MenuLink(r, icons.UserPlus(), "Register", routenames.Register)),
If(!r.IsAuth, MenuLink(r, icons.QuestionCircle(), "Forgot password", routenames.ForgotPasswordSubmit)),
Iff(r.IsAdmin, adminSubMenu),
),