Skip to content

Commit 18992a2

Browse files
author
Prad N
committed
feat: implement profile and passkey registration flows
1 parent 1013207 commit 18992a2

File tree

8 files changed

+617
-19
lines changed

8 files changed

+617
-19
lines changed

app/blocks/register/components.templ

+51-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,54 @@
11
package register
22

3-
templ View() {
4-
<html>
5-
<head>
6-
<title>Sonr</title>
7-
</head>
8-
<body>
9-
<h1>Auth View</h1>
10-
</body>
11-
</html>
3+
import (
4+
"github.com/sonr-io/nebula/card"
5+
"github.com/sonr-io/nebula/form"
6+
"github.com/sonr-io/nebula/hero"
7+
"github.com/sonr-io/nebula/input"
8+
"github.com/sonr-io/nebula/layout"
9+
"github.com/sonr-io/nebula/slider"
10+
)
11+
12+
templ RegisterProfileView(firstNumber int, lastNumber int) {
13+
@layout.Root("New Profile | Sonr.ID") {
14+
@layout.Container() {
15+
@hero.Title("Basic Info", "Tell us a little about yourself.")
16+
@form.Root("/register/passkey", "create-profile") {
17+
@form.Body() {
18+
@form.Header() {
19+
<div class="w-full py-2">
20+
<sl-avatar shape="circle" size="large" src="https://avatars.githubusercontent.com/u/101929?v=4"></sl-avatar>
21+
</div>
22+
}
23+
@input.HandleInitial()
24+
@slider.HumanInitial(firstNumber, lastNumber)
25+
@form.Footer() {
26+
@form.Cancel()
27+
@form.Submit("Next")
28+
}
29+
}
30+
}
31+
}
32+
}
33+
}
34+
35+
templ RegisterPasskeyView(address string, handle string, name string, challenge string, creationBlock string) {
36+
@layout.Root("Register | Sonr.ID") {
37+
@layout.Container() {
38+
@hero.Title("Link a PassKey", "This will be used to login to your vault.")
39+
@form.Root("/register/finish", "passkey-form") {
40+
<input type="hidden" name="credential" id="credential-data" required/>
41+
@form.Body() {
42+
@form.Header() {
43+
@card.CardAccount(address, name, handle, creationBlock)
44+
}
45+
@input.CoinSelect()
46+
@form.Footer() {
47+
@input.PasskeyInitial(address, handle, challenge)
48+
@form.Cancel()
49+
}
50+
}
51+
}
52+
}
53+
}
1254
}

0 commit comments

Comments
 (0)