mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 01:41:44 +00:00
19 lines
414 B
Templ
19 lines
414 B
Templ
package dash
|
|
|
|
import (
|
|
"github.com/onsonr/sonr/pkg/webapp/components/ui"
|
|
"github.com/onsonr/sonr/pkg/webapp/pages/dash/internal"
|
|
)
|
|
|
|
// RedirectModal returns the Modal with a QR code to scan.
|
|
templ Page() {
|
|
@ui.FullScreenModal() {
|
|
<div class="relative text-center">
|
|
@internal.RegisterHeader()
|
|
@ui.Separator("Or Reserve Handle")
|
|
@internal.ReserveHandleForm()
|
|
</div>
|
|
@internal.RegisterFooter()
|
|
}
|
|
}
|