Sha256: e83c2801cf93d4be948ac34601b3e42ac6848eec6304b2aa7edb31dbd9fd48ca

Contents?: true

Size: 625 Bytes

Versions: 2

Compression:

Stored size: 625 Bytes

Contents

# Formatted Form
Author: [The Working Group](http://www.theworkinggroup.ca)

---

## What is it?

A Rails form builder to simplify your forms and keep your views clean.
  
  
## Install

### 1. Add the gem definition to your Gemfile:
    
    config.gem 'form_builder'
    
### 2. From within your Rails project run:
    
    bundle install


## Usage (with haml)

    = formatted_form_for @session_user, :url => login_path do |f|
      = f.text_field :email, :label => 'Email address'
      = f.password_field :password
      = f.check_box :remember_me, :label => 'Remember me when I come back'
      = f.submit 'Log In'
  

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
formatted_form-1.0.1 README.md
formatted_form-1.0.0 README.md