* Replace /session/new with /login and /session/sign_out with /logout. * Rename 'sign in' to 'login'. This changes are to make urls cleaner and terminology more consistent.
17 lines
398 B
Plaintext
17 lines
398 B
Plaintext
<h1>Access Denied</h1>
|
|
|
|
<p>
|
|
You do not have permission to visit this page.
|
|
|
|
<% if CurrentUser.is_anonymous? %>
|
|
Try <%= link_to "logging in", login_path(url: request.fullpath) %> or
|
|
<%= link_to "signing up", new_user_path %>.
|
|
<% end %>
|
|
</p>
|
|
|
|
<%= link_to "Go back", :back, :rel => "prev" %>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Access Denied - <%= Danbooru.config.app_name %>
|
|
<% end %>
|