feat: implement passkey registration flow

This commit is contained in:
Prad Nukala
2024-12-09 14:51:12 -05:00
parent 893631eb4c
commit 3353d9f622
5 changed files with 40 additions and 38 deletions
+2 -1
View File
@@ -40,6 +40,7 @@ func HandleRegisterStart(c echo.Context) error {
}
func HandleRegisterFinish(c echo.Context) error {
// cred := c.FormValue("credential")
cred := c.FormValue("credential")
fmt.Println(cred)
return response.TemplEcho(c, register.LoadingVaultView())
}