Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <% if user_signed_in? %>
  2. <div class="col-md-6">
  3. <div class="well">
  4. <h2 class="text-center">Your Profile</h2>
  5. <% if current_user.profile %>
  6. <%= link_to "Edit your profile", edit_user_profile_path(current_user), class: 'btn btn-default btn-lb btn-block' %>
  7. <%= link_to "View your profile", user_path(current_user), class: 'btn btn-default btn-lb btn-block' %>
  8. <% else %>
  9. <p>Create your profile so that you can share your information with the community.</p>
  10. <%= link_to "Create your profile", new_user_profile_path(current_user), class: 'btn btn-default btn-lb btn-block' %>
  11. <% end %>
  12. </div>
  13. </div>
  14. <div class="col-md-6">
  15. <div class="well">
  16. <h2 class="text-center">The Community</h2>
  17. <p>Visit the community to meet other developers, entrepreneurs, and investors!</p>
  18. <%= link_to "Visit the commmunity", "#", class: 'btn btn-default btn-lb btn-block' %>
  19. </div>
  20. </div>
  21. <% else %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement