Create contacts & members pages

This commit is contained in:
William Bouzourène 2025-01-08 16:09:19 +01:00
parent fa0e917d34
commit 1d6ae9223e
Signed by: bouzoure
SSH key fingerprint: SHA256:19MbXpLua4rUtk8tunMesD8KUKb91LXLHg8E/qTooww
4 changed files with 168 additions and 0 deletions

View file

@ -116,6 +116,12 @@ func main() {
app.Get("/totp/verify", controllers.TotpVerifyPage)
app.Post("/totp/verify", controllers.TotpVerifyPage)
// Members
app.Get("/members", controllers.Members)
// Contacts
app.Get("/contacts", controllers.Contacts)
// Account manage
app.Get("/account/manage", controllers.AccountManage)
app.Post("/account/manage", controllers.AccountManage)