fix
This commit is contained in:
parent
631a87abf1
commit
a8c44f7206
|
@ -143,23 +143,27 @@ func (l *UserEmailConfirmationLogic) UserEmailConfirmation(req *types.RequestEma
|
||||||
|
|
||||||
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
||||||
func (l *UserEmailConfirmationLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
|
func (l *UserEmailConfirmationLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
|
||||||
successHtml := `<!DOCTYPE html>
|
if resp.Code == 200 {
|
||||||
<html>
|
successHtml := `<!DOCTYPE html>
|
||||||
<head>
|
<html>
|
||||||
<title>注册成功</title>
|
<head>
|
||||||
</head>
|
<title>注册成功</title>
|
||||||
<body>
|
</head>
|
||||||
<h1>恭喜!您的注册成功。</h1>
|
<body>
|
||||||
|
<h1>恭喜!您的注册成功。</h1>
|
||||||
<p>感谢您在我们网站进行注册。您的账号已经激活。</p>
|
|
||||||
|
<p>感谢您在我们网站进行注册。您的账号已经激活。</p>
|
||||||
<p>您现在可以使用您的邮箱地址和密码登录我们的网站,享受完整的服务和功能。</p>
|
|
||||||
|
<p>您现在可以使用您的邮箱地址和密码登录我们的网站,享受完整的服务和功能。</p>
|
||||||
<p>再次感谢您的信任和支持。如果您有任何问题,请随时联系我们。</p>
|
|
||||||
|
<p>再次感谢您的信任和支持。如果您有任何问题,请随时联系我们。</p>
|
||||||
<p>祝您使用愉快!</p>
|
|
||||||
</body>
|
<p>祝您使用愉快!</p>
|
||||||
</html>`
|
</body>
|
||||||
w.Write([]byte(successHtml))
|
</html>`
|
||||||
httpx.OkJsonCtx(r.Context(), w, nil)
|
w.Write([]byte(successHtml))
|
||||||
|
httpx.OkJsonCtx(r.Context(), w, nil)
|
||||||
|
} else {
|
||||||
|
httpx.OkJsonCtx(r.Context(), w, resp)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user