Advertisement
Guest User

index.html.erb noobie

a guest
Jan 6th, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <h1>Welcome to Togather @</h1>
  2. <p>In order to use our application, you must first create an account with Facebook.</p>
  3.  
  4. <% if current_user %>
  5. Signed in as <strong><%= current_user.name %></strong>!
  6. <%= link_to "Sign out", signout_path, id: "sign_out" %>
  7. <% else %>
  8. <%= link_to "Sign in with Facebook", "/auth/facebook", id: "sign_in" %>
  9. <% end %>
  10.  
  11. <% if current_user %>
  12. Number of friends: <%= current_user.friends_count %></br>
  13. App Friends: <%= current_user.regged %>
  14.  
  15.  
  16. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement