Switch to form field
This commit is contained in:
parent
b49c864475
commit
313e7dd47b
|
|
@ -768,8 +768,7 @@ func LinkAccountPostRegister(ctx *context.Context, cpt *captcha.Captcha, form au
|
||||||
}
|
}
|
||||||
|
|
||||||
if setting.Service.EnableRecaptcha {
|
if setting.Service.EnableRecaptcha {
|
||||||
ctx.Req.ParseForm()
|
valid, _ := recaptcha.Verify(form.GRecaptchaResponse)
|
||||||
valid, _ := recaptcha.Verify(ctx.Req.Form.Get("g-recaptcha-response"))
|
|
||||||
if !valid {
|
if !valid {
|
||||||
ctx.Data["Err_Captcha"] = true
|
ctx.Data["Err_Captcha"] = true
|
||||||
ctx.RenderWithErr(ctx.Tr("form.captcha_incorrect"), tplLinkAccount, &form)
|
ctx.RenderWithErr(ctx.Tr("form.captcha_incorrect"), tplLinkAccount, &form)
|
||||||
|
|
@ -911,8 +910,7 @@ func SignUpPost(ctx *context.Context, cpt *captcha.Captcha, form auth.RegisterFo
|
||||||
}
|
}
|
||||||
|
|
||||||
if setting.Service.EnableRecaptcha {
|
if setting.Service.EnableRecaptcha {
|
||||||
ctx.Req.ParseForm()
|
valid, _ := recaptcha.Verify(form.GRecaptchaResponse)
|
||||||
valid, _ := recaptcha.Verify(ctx.Req.Form.Get("g-recaptcha-response"))
|
|
||||||
if !valid {
|
if !valid {
|
||||||
ctx.Data["Err_Captcha"] = true
|
ctx.Data["Err_Captcha"] = true
|
||||||
ctx.RenderWithErr(ctx.Tr("form.captcha_incorrect"), tplSignUp, &form)
|
ctx.RenderWithErr(ctx.Tr("form.captcha_incorrect"), tplSignUp, &form)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user