401.html 713 B

123456789101112131415161718192021222324
  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 @message.present? %>
  9. <div><%= @message %></div>
  10. <% end %>
  11. <% if !@traceback %>
  12. <div class="error-image" style="background-image: url(/assets/error/error-1.svg)"></div>
  13. <p>Sorry, but your authentication failed. Double check your credentials and try again.</p>
  14. <% else %>
  15. <div><%= @exception.message %></div>
  16. <% if @exception.backtrace %>
  17. <pre><code>
  18. <% @exception.backtrace.each {|row| %>
  19. <%= row %>
  20. <% } %></code></pre>
  21. <% end %>
  22. <% end %>
  23. </body>
  24. </html>