Guest User

Untitled

a guest
May 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>TigersLog</title>
  4. <%= stylesheet_link_tag 'style' %>
  5. </head>
  6. <body>
  7. <div id="content">
  8. <div id= "login_logout">
  9. <% if @current_user %>
  10. Logged in as:
  11. <%= @current_user.login %>
  12. <em><%= link_to "(Logout)", session_path,
  13. :method => :delete %></em>
  14. <% else %>
  15. <em>Not logged in.</em>
  16. <%= link_to 'Login', new_session_path %>
  17. <% end %>
  18. </div> <!-- login_logout -->
  19. <h1>TigersLog</h1>
  20. <% unless flash[:notice].blank? %>
  21. <div id="notification"><%= flash[:notice] %></div>
  22. <% end %>
  23. <%= yield %>
  24. </div> <!-- content -->
  25. <ul id="navigation">
  26. <li><%= link_to 'List of Game Logs', games_path %></li>
  27. <li><%= link_to 'Submit a New Game', new_game_path %></li>
  28. </ul> <!-- nav -->
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment