mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
22 lines
473 B
Templ
22 lines
473 B
Templ
package login
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/onsonr/sonr/pkg/nebula/global/styles"
|
|
"github.com/onsonr/sonr/pkg/nebula/global/ui"
|
|
)
|
|
|
|
templ View(c echo.Context) {
|
|
@styles.Layout("Sonr.ID", true) {
|
|
@ui.Card("login-view", styles.SizeLarge) {
|
|
@styles.H1("Sonr.ID")
|
|
@styles.Text("Neo-tree is a file manager for NeoFS.")
|
|
@styles.Spacer()
|
|
@styles.Spacer()
|
|
@ui.Button(ui.GET("/", "#login-view")) {
|
|
@styles.Text("Cancel")
|
|
}
|
|
}
|
|
}
|
|
}
|