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
+11
View File
@@ -0,0 +1,11 @@
package pages
import (
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/pkg/nebula/components/grant"
)
func Authorize(c echo.Context) error {
return echoResponse(c, grant.View(c))
}