Skip to content

Instantly share code, notes, and snippets.

@QETHAN
Created June 15, 2014 07:28
Show Gist options
  • Save QETHAN/ddf3fb27860cb268c12b to your computer and use it in GitHub Desktop.
Save QETHAN/ddf3fb27860cb268c12b to your computer and use it in GitHub Desktop.
<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