mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
- **feat: remove Hway deployment** - **feat: introduce session middleware for requests** - **refactor: update path imports to use new pkg folder** - **feat: add gRPC client for interacting with services** - **feat: remove grpc client and use REST api** - **refactor: move from to** - **feat: add client views endpoint** - **feat: add webauthn support** - **closes: #1124** - **refactor: Improve PR labeler configuration** - **feat: add milestone discussion template** - **feat: remove OKR tracking issue template** - **feat: use gorilla sessions for session management** - **refactor: move pubkey related code to** - **<no value>** - **refactor: remove unused identifier type** - **feat: integrate Macaroon Keeper with Service Module** - **refactor: rename worker routes for clarity**
18 lines
948 B
Templ
18 lines
948 B
Templ
package sections
|
|
|
|
import (
|
|
"github.com/onsonr/sonr/pkg/nebula/components/auth/forms"
|
|
"github.com/onsonr/sonr/pkg/nebula/global/styles"
|
|
"github.com/onsonr/sonr/pkg/nebula/global/ui"
|
|
)
|
|
|
|
templ RegisterStart() {
|
|
@ui.Breadcrumbs()
|
|
@forms.BasicDetailsForm()
|
|
@styles.Spacer()
|
|
<div class="flex flex-col-reverse sm:flex-row sm:justify-between sm:space-x-2">
|
|
<button @click="modalOpen=false" type="button" class="inline-flex items-center justify-center h-10 px-4 py-2 text-sm font-medium transition-colors border rounded-md focus:outline-none focus:ring-2 focus:ring-neutral-100 focus:ring-offset-2">Cancel</button>
|
|
<button @click="modalOpen=false" type="button" class="inline-flex items-center justify-center h-10 px-4 py-2 text-sm font-medium text-white transition-colors border border-transparent rounded-md focus:outline-none focus:ring-2 focus:ring-neutral-900 focus:ring-offset-2 bg-neutral-950 hover:bg-neutral-900">Next</button>
|
|
</div>
|
|
}
|