401.html 684 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html class="dark">
  3. <meta charset="utf-8">
  4. <title>401: Unauthorized</title>
  5. <link rel="stylesheet" href="/assets/error/style.css">
  6. <body <% if @traceback %>class="error-message"<% end %>>
  7. <h1>401: Unauthorized</h1>
  8. <% if !@traceback %>
  9. <div class="error-image" style="background-image: url(/assets/error/error-1.svg)"></div>
  10. <p>Sorry, but you're not allowed to access this page. If you're registered please log in and refresh this page.</p>
  11. <% else %>
  12. <div><%= @exception.message %></div>
  13. <% if @exception.backtrace %>
  14. <div>Traceback:</div>
  15. <% @exception.backtrace.each {|row| %>
  16. <%= row %><br>
  17. <% } %>
  18. <% end %>
  19. <% end %>
  20. </body>
  21. </html>