mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 18:31:41 +00:00
14 lines
334 B
Templ
14 lines
334 B
Templ
package auth
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/labstack/echo/v4"
|
||
|
|
"github.com/onsonr/sonr/nebula/components/auth/sections"
|
||
|
|
"github.com/onsonr/sonr/nebula/global/styles"
|
||
|
|
)
|
||
|
|
|
||
|
|
templ Modal(c echo.Context) {
|
||
|
|
@styles.OpenModal("Account Registration", "Enter your account information below to create your account.") {
|
||
|
|
@sections.RegisterStart()
|
||
|
|
}
|
||
|
|
}
|