Files
sonr/pkg/nebula/components/auth/modal.templ
T

26 lines
710 B
Templ
Raw Normal View History

2024-10-11 16:47:52 -04:00
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()
}
}