Skip to content

Commit 18f4546

Browse files
author
Prad N
committed
feat: enhance registration flow with success view
1 parent 5be47de commit 18f4546

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed
File renamed without changes.

app/handlers/global_handler.go

-5
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,3 @@ func RedirectServiceCallback(c echo.Context) error {
4848
func RedirectUserVault(c echo.Context) error {
4949
return nil
5050
}
51-
52-
// ShowRegisterSuccess renders a Modal with the user's new Vault information
53-
func ShowRegisterSuccess(c echo.Context) error {
54-
return nil
55-
}

app/handlers/register_handler.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func HandleAttestationSubmit(c echo.Context) error {
4444
return nil
4545
}
4646

47-
// ShowRegisterSuccess renders a Modal with the user's new Vault information
47+
// ShowRegisterSuccess renders the register page with the user's information
4848
func ShowRegisterSuccess(c echo.Context) error {
49-
return nil
49+
return render.EchoTempl(c, register.SuccessView())
5050
}

0 commit comments

Comments
 (0)