Created
October 5, 2012 07:14
-
-
Save lakshminarayanan/3838513 to your computer and use it in GitHub Desktop.
User Header
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="user_header"> | |
<% if current_user %> | |
Logged in as <%= link_to current_user.name, user_path(current_user) %> | |
<%= link_to "Log out", logout_path %> | |
<% else %> | |
<%= link_to "Sign Up", signup_path %> or | |
<%= link_to "Log In", login_path %> | |
<% end %> | |
</div> | |
<br /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment