feat: add login and registration pages

This commit is contained in:
Prad Nukala
2024-10-01 14:42:11 -04:00
parent d486becbc6
commit e807691c64
24 changed files with 385 additions and 101 deletions
+3
View File
@@ -26,6 +26,9 @@ func NewProxyCmd() *cobra.Command {
}
e.GET("/", pages.Home)
e.GET("/login", pages.Login)
e.GET("/register", pages.Register)
e.GET("/profile", pages.Profile)
e.GET("/allocate", pages.Profile)
if err := e.Start(":1323"); err != http.ErrServerClosed {