Versions in this module Expand all Collapse all v0 v0.1.0 Jan 28, 2016 Changes in this version + type Field struct + Id string + Type string + Value interface{} + type Form struct + Action string + Fields []*Field + Id string + Method string + func NewForm(id, action string) *Form + func (p *Form) Email(id string) + func (p *Form) Password(id string) + func (p *Form) Text(id, val string) + func (p *Form) TextArea(id, val string) + type Response struct + CreatedAt time.Time + Messages []string + Ok bool + Payload interface{} + func NewResponse(ok bool, payload interface{}, messages ...string) *Response + func (p *Response) AddMessages(messages ...string) + func (p *Response) Check(err error)