mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
26 lines
710 B
Templ
26 lines
710 B
Templ
package auth
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/labstack/echo/v4"
|
||
|
|
"github.com/onsonr/sonr/pkg/nebula/components/auth/sections"
|
||
|
|
"github.com/onsonr/sonr/pkg/nebula/global/styles"
|
||
|
|
)
|
||
|
|
|
||
|
|
templ RegisterModal(c echo.Context) {
|
||
|
|
@styles.OpenModal("Account Registration", "Enter your account information below to create your account.") {
|
||
|
|
@sections.RegisterStart()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
templ LoginModal(c echo.Context) {
|
||
|
|
@styles.OpenModal("Account Registration", "Enter your account information below to create your account.") {
|
||
|
|
@sections.RegisterStart()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
templ AuthorizeModal(c echo.Context) {
|
||
|
|
@styles.OpenModal("Account Registration", "Enter your account information below to create your account.") {
|
||
|
|
@sections.RegisterStart()
|
||
|
|
}
|
||
|
|
}
|