Created
June 15, 2014 07:28
-
-
Save QETHAN/ddf3fb27860cb268c12b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row-fluid"> | |
<div class="span4 well"> | |
<%= form_for @member, :html => {:class => "form-horizontal"} do |m| %> | |
<fieldset> | |
<legend>Member Form</legend> | |
<div class="control-group"> | |
<%= m.label :title, :class => "control-label" %> | |
<div class="controls"> | |
<%= m.text_field :title, :class => "input-xlarge" %> | |
</div> | |
</div> | |
<div class="form-actions"> | |
<%= m.submit :class => "btn btn-primary" %> | |
</div> | |
</fieldset> | |
<% end %> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment