mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
17 lines
313 B
Templ
17 lines
313 B
Templ
package pages
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/onsonr/sonr/pkg/common/middleware/session"
|
||
|
|
"github.com/onsonr/sonr/pkg/webapp/components/auth"
|
||
|
|
)
|
||
|
|
|
||
|
|
templ AuthPage() {
|
||
|
|
if session.GetData(ctx).IsMobile {
|
||
|
|
if session.GetData(ctx).Challenge == "" {
|
||
|
|
@auth.LoginModal()
|
||
|
|
}
|
||
|
|
@auth.RegisterModal()
|
||
|
|
}
|
||
|
|
@auth.RedirectModal()
|
||
|
|
}
|