Files
sonr/pkg/nebula/views/openid.templ
T

19 lines
378 B
Templ
Raw Normal View History

2024-09-18 02:22:17 -04:00
package views
import (
"github.com/labstack/echo/v4"
2024-09-21 21:42:51 -04:00
"github.com/onsonr/sonr/pkg/nebula/blocks"
2024-09-18 02:22:17 -04:00
)
func AuthorizeView(c echo.Context) error {
return echoComponentResponse(c, renderAuthorizeView())
}
templ renderAuthorizeView() {
@blocks.Card("authorize-view", blocks.SizeMedium) {
@blocks.H1("Sonr.ID")
@blocks.Text("Neo-tree is a file manager for NeoFS.")
}
}