├── LICENSE ├── README.md ├── binding.go ├── booleanfield.go ├── booleanfield_test.go ├── checkboxwidget.go ├── datetimefield.go ├── datetimefield_test.go ├── errors.go ├── examples ├── custom_validation.go ├── get_method_form.go ├── login_form.go ├── model_form.go ├── radio_input.go ├── select_input.go ├── simple_form.go └── templates │ └── post_form.html ├── fields.go ├── floatfield.go ├── floatfield_test.go ├── forms.go ├── forms_mapto_test.go ├── helpers.go ├── hiddeninputwidget.go ├── integerfield.go ├── integerfield_test.go ├── modelforms.go ├── multipletextfield.go ├── nullbooleanfield.go ├── nullbooleanfield_test.go ├── passwordinputwidget.go ├── radiowidget.go ├── selectwidget.go ├── templates.go ├── textfield.go ├── textfield_test.go ├── textinputwidget.go ├── validators.go ├── validators_test.go ├── values.go ├── wercker.yml └── widgets.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/README.md -------------------------------------------------------------------------------- /binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/binding.go -------------------------------------------------------------------------------- /booleanfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/booleanfield.go -------------------------------------------------------------------------------- /booleanfield_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/booleanfield_test.go -------------------------------------------------------------------------------- /checkboxwidget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/checkboxwidget.go -------------------------------------------------------------------------------- /datetimefield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/datetimefield.go -------------------------------------------------------------------------------- /datetimefield_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/datetimefield_test.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/errors.go -------------------------------------------------------------------------------- /examples/custom_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/examples/custom_validation.go -------------------------------------------------------------------------------- /examples/get_method_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/examples/get_method_form.go -------------------------------------------------------------------------------- /examples/login_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/examples/login_form.go -------------------------------------------------------------------------------- /examples/model_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/examples/model_form.go -------------------------------------------------------------------------------- /examples/radio_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/examples/radio_input.go -------------------------------------------------------------------------------- /examples/select_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/examples/select_input.go -------------------------------------------------------------------------------- /examples/simple_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/examples/simple_form.go -------------------------------------------------------------------------------- /examples/templates/post_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/examples/templates/post_form.html -------------------------------------------------------------------------------- /fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/fields.go -------------------------------------------------------------------------------- /floatfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/floatfield.go -------------------------------------------------------------------------------- /floatfield_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/floatfield_test.go -------------------------------------------------------------------------------- /forms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/forms.go -------------------------------------------------------------------------------- /forms_mapto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/forms_mapto_test.go -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/helpers.go -------------------------------------------------------------------------------- /hiddeninputwidget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/hiddeninputwidget.go -------------------------------------------------------------------------------- /integerfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/integerfield.go -------------------------------------------------------------------------------- /integerfield_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/integerfield_test.go -------------------------------------------------------------------------------- /modelforms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/modelforms.go -------------------------------------------------------------------------------- /multipletextfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/multipletextfield.go -------------------------------------------------------------------------------- /nullbooleanfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/nullbooleanfield.go -------------------------------------------------------------------------------- /nullbooleanfield_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/nullbooleanfield_test.go -------------------------------------------------------------------------------- /passwordinputwidget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/passwordinputwidget.go -------------------------------------------------------------------------------- /radiowidget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/radiowidget.go -------------------------------------------------------------------------------- /selectwidget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/selectwidget.go -------------------------------------------------------------------------------- /templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/templates.go -------------------------------------------------------------------------------- /textfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/textfield.go -------------------------------------------------------------------------------- /textfield_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/textfield_test.go -------------------------------------------------------------------------------- /textinputwidget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/textinputwidget.go -------------------------------------------------------------------------------- /validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/validators.go -------------------------------------------------------------------------------- /validators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/validators_test.go -------------------------------------------------------------------------------- /values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/values.go -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/wercker.yml -------------------------------------------------------------------------------- /widgets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluele/gforms/HEAD/widgets.go --------------------------------------------------------------------------------