1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 07:43:27 +00:00
Beego/pkg/adapter/utils/captcha
2020-10-05 14:35:12 +08:00
..
captcha.go Adapter: cache API 2020-10-05 14:35:12 +08:00
image_test.go Adapter: utils 2020-09-05 18:07:42 +08:00
image.go Adapter: utils 2020-09-05 18:07:42 +08:00
LICENSE Adapter: utils 2020-09-05 18:07:42 +08:00
README.md Adapter: utils 2020-09-05 18:07:42 +08:00

Captcha

an example for use captcha

package controllers

import (
	"github.com/astaxie/beego"
	"github.com/astaxie/beego/cache"
	"github.com/astaxie/beego/utils/captcha"
)

var cpt *captcha.Captcha

func init() {
	// use beego cache system store the captcha data
	store := cache.NewMemoryCache()
	cpt = captcha.NewWithFilter("/captcha/", store)
}

type MainController struct {
	beego.Controller
}

func (this *MainController) Get() {
	this.TplName = "index.tpl"
}

func (this *MainController) Post() {
	this.TplName = "index.tpl"

	this.Data["Success"] = cpt.VerifyReq(this.Ctx.Request)
}

template usage

{{.Success}}
<form action="/" method="post">
	{{create_captcha}}
	<input name="captcha" type="text">
</form>