sonr/nebula/pages/openid.templ

20 lines
400 B
Plaintext
Raw Normal View History

2024-09-22 02:51:52 -04:00
package pages
import (
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/nebula/blocks"
2024-09-22 02:51:52 -04:00
)
func Authorize(c echo.Context) error {
return echoResponse(c, authorizeView(c))
}
templ authorizeView(c echo.Context) {
@blocks.Layout("Sonr.ID", true) {
@blocks.Card("authorize-view", blocks.SizeMedium) {
@blocks.H1("Sonr.ID")
@blocks.Text("Neo-tree is a file manager for NeoFS.")
}
2024-09-22 02:51:52 -04:00
}
}