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.

auth.erb 281B

12345678
  1. <% if signed_in? %>
  2. <form class="auth" method="POST" action="/logout">
  3. <p class="auth__copy">
  4. Logged in as <span class="auth__username"><%= current_user %></span>
  5. </p>
  6. <input type="submit" class="auth__logout btn btn--small" value="Logout">
  7. </form>
  8. <% end %>