Compare commits

...
Sign in to create a new pull request.

1 commit
dev ... main

Author SHA1 Message Date
652b9ddcce style
Some checks are pending
Test / test (push) Waiting to run
2026-05-20 15:16:55 +00:00
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),
),

File diff suppressed because one or more lines are too long