Create contacts & members pages
This commit is contained in:
parent
fa0e917d34
commit
1d6ae9223e
4 changed files with 168 additions and 0 deletions
6
main.go
6
main.go
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue