mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 18:01:39 +00:00
13 lines
284 B
Templ
13 lines
284 B
Templ
package auth
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/onsonr/sonr/pkg/common/middleware/session"
|
||
|
|
"github.com/onsonr/sonr/pkg/webapp/components/ui"
|
||
|
|
)
|
||
|
|
|
||
|
|
templ AuthorizeView(c session.Context) {
|
||
|
|
@ui.OpenModal(c.ID(), "Enter your account information below to create your account.") {
|
||
|
|
@loginStart()
|
||
|
|
}
|
||
|
|
}
|