Beego/utils/captcha
astaxie 90d1349665 fix typo 2016-01-17 23:48:17 +08:00
..
LICENSE add missed LICENSE of captcha 2015-05-24 23:59:39 +08:00
README.md TplNames renamed TplName ,fix #1229,Remember modify bee tool. 2016-01-07 16:16:39 +08:00
captcha.go fix typo 2016-01-17 23:48:17 +08:00
image.go golint captcha 2015-09-14 23:13:51 +08:00
image_test.go update the documents & comments 2014-08-18 16:41:43 +08:00
siprng.go update the documents & comments 2014-08-18 16:41:43 +08:00
siprng_test.go update the documents & comments 2014-08-18 16:41:43 +08:00

README.md

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>