You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
362 B
9 lines
362 B
<ul class="wat-cf"> |
|
<% if user_signed_in? %> |
|
<li><%= link_to('Account', edit_user_registration_path) %></li> |
|
<li><%= link_to('Sign out', destroy_user_session_path, :method => :delete) %></li> |
|
<% else %> |
|
<li><%= link_to('Sign up', new_user_registration_path) %></li> |
|
<li><%= link_to('Sign in', new_user_session_path) %></li> |
|
<% end %> |
|
</ul>
|
|
|