<% if !current_user.nil? %>
Hello <%= current_user.name %>
<%= link_to "Logout", user_logout_url() %>
<% if current_user.username %>
<%= link_to 'Personal Room', current_user.room_url %>
<% else %>
<%= link_to 'Set Username', edit_user_path(current_user) %>
<% end %>
<% end %>
<%= render 'landing/join_form' %>
<%= render 'landing/footer_message' %>
<%= render 'landing/footer_oauth_append' %>