diff options
Diffstat (limited to 'routers/user/user.go')
-rw-r--r-- | routers/user/user.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/user/user.go b/routers/user/user.go index 56b9dc205c..ce4d0cc3d0 100644 --- a/routers/user/user.go +++ b/routers/user/user.go @@ -341,7 +341,7 @@ func Activate(ctx *middleware.Context) { } else { ctx.Data["ServiceNotEnabled"] = true } - ctx.HTML(200, "user/active") + ctx.HTML(200, "user/activate") return } @@ -363,7 +363,7 @@ func Activate(ctx *middleware.Context) { } ctx.Data["IsActivateFailed"] = true - ctx.HTML(200, "user/active") + ctx.HTML(200, "user/activate") } func ForgotPasswd(ctx *middleware.Context) { |