New Positive Experience
<%= form_for(participant.experiences.build, url: create_path, html: { method: :post, role: :form }) do |f| %>
<%= f.label :emotions, "What feelings did you have while it was happening?", class: "control-label" %>
<%= f.text_field :emotions, class: "form-control" %>
<%= f.label :thoughts, "What thoughts did you have while it was happening?", class: "control-label" %>
<%= f.text_field :thoughts, class: "form-control" %>
<%= f.label :body_feelings, "How did your body feel?", class: "control-label" %>
<%= f.text_field :body_feelings, class: "form-control" %>
<%= f.submit t(:next), class: "btn btn-primary" %>
<%= link_to t(:skip), navigator_next_content_path, class: "btn btn-warning" %>
<% end %>