Skip to content

Instantly share code, notes, and snippets.

@attatae
Last active August 29, 2015 13:58
Show Gist options
  • Save attatae/10136931 to your computer and use it in GitHub Desktop.
Save attatae/10136931 to your computer and use it in GitHub Desktop.
<%= form_for(@profile) do |f| %>
<p>
<%= f.label :Profile_Name %><br>
<%= f.text_field :profile_name %>
</p>
<p>
<%= f.label :Background %><br>
<%= f.text_area :about %>
</p>
<p>
<%= f.label :interest_list %><br>
<%= f.text_area :interest_list %>
</p>
<p>
<%= f.label :skill_list %><br>
<%= f.text_area :skill_list %>
</p>
<div class="form-actions">
<p>
<%= f.button :Submit, :class => 'btn btn-large btn-primary' %>
</p>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment