Skip to content

Instantly share code, notes, and snippets.

@colonelpanic8
Created August 16, 2015 01:11
Show Gist options
  • Select an option

  • Save colonelpanic8/d32e992a70575eef0db5 to your computer and use it in GitHub Desktop.

Select an option

Save colonelpanic8/d32e992a70575eef0db5 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Manifold</title>
</head>
<body>
<%= render "layouts/errors" %>
<% if logged_in? %>
<%= current_user.email %>
<%= button_to "Sign Out", session_url, method: :delete %>
<% else %>
<%= link_to "Sign In", new_session_url %>
<%= link_to "Sign Up", new_user_url %>
<% end %>
<%= yield %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment