What needs to be done?

<% if @todos.empty? %>

You're all caught up!

Add a task above to get started.
<% else %> <% @todos.each do |todo| %>
<%= Rack::Utils.escape_html(todo.content) %>
<% end %> <% end %>
<% if current_user&.is_temporary %>
Temporary Session

Your tasks will be lost if you clear your cookies. Create a free account to save them!

Sign Up Now
<% end %>