This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 431c5979660c6c6a33b4b6f241dcb93bfd1ed516
tree 396ae6f5f8aaf0d7d044ae7785915f20ff31e24d
parent 1e10e510e9d7bd01902c37a07be840c426f1f747
tree 396ae6f5f8aaf0d7d044ae7785915f20ff31e24d
parent 1e10e510e9d7bd01902c37a07be840c426f1f747
| name | age | message | |
|---|---|---|---|
| |
README | ||
| |
Rakefile | Sun Mar 09 16:01:36 -0700 2008 | |
| |
init.rb | ||
| |
install.rb | ||
| |
lib/ | ||
| |
public/ | ||
| |
tasks/ | Sun Mar 09 16:01:36 -0700 2008 | |
| |
test/ | Sun Mar 09 16:01:36 -0700 2008 | |
| |
uninstall.rb | Sun Mar 09 16:01:36 -0700 2008 |
README
AccesibleFormBuilder =================== This plugin is based upon pretty_accessible_form from http://machinesmonstersandmadness.com/svn/plugins/trunk/pretty_accessible_form == Installation git clone git://github.com/shift/accessible_form_builder.git vendor/plugins/accessible_form_builder == Usage Here's an example usage: <% a_form_for :user, :url => users_path, :legend => "Login Details" do |f| %> <%= f.text_field :login, :label => "Username", :note => "This is visible to other users", :required => true %> <%= f.password_field :password, :label => "Password", :required => true %> <%= f.password_field :password_confirmation, :label => "Confirm Password", :required => true %> <%= f.separator "Personal Details" %> <%= f.text_field :firstname, :label => "First name", :required => true %> <%= f.text_field :lastname, :label => "Last name", :required => true %> <%= f.text_field :email, :label => "E-Mail", :required => true %> <%= f.separator "Location Details" %> <%= f.text_field :address, :label => "Location", :note => "(eg. New York, 90210, SE1 3SR)", :required => true %> <%= f.submit "Sign up" %> <% end %> == Credits Original idea from A List Aparts "Prettier Accessible Forms" http://alistapart.com/articles/prettyaccessibleforms Rails implementation of pretty_accessible_form is copyright 2007, 2008 by Matt Williams http://machinesmonstersandmadness.com/svn/plugins/trunk/pretty_accessible_form Fixing of :required, validating markup and :note by Vincent Palmer 2008. For more information contact "shiftEMAILrwvhp.com".gsub!('EMAIL', '@'). == License This is covered under a MIT License.








