Guest User

Untitled

a guest
Apr 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Workspace</title>
  5. <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
  6. <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
  7. <%= csrf_meta_tags %>
  8. </head>
  9. <body>
  10. <div>
  11. <% if current_user %>
  12. Signed in as <strong><%= current_user.name %></strong>!
  13. <%= link_to "Sign out", signout_path, id: "sign_out" %>
  14. <% else %>
  15. <%= link_to "Sign in with Facebook", "/auth/facebook", id: "sign_in" %>
  16. <% end %>
  17. </div>
  18. <%= yield %>
  19.  
  20.  
  21. </body>
  22. </html>
Add Comment
Please, Sign In to add comment