{% extends "baseTemplate/index.html" %} {% comment %} ============================================================================== CloudPanel — permission denied ------------------------------------------------------------------------------ Rendered whenever an ACL check fails inside a view. Views may pass: deniedAction str human description of what was attempted requiredACL str the ACL key that would have been needed ownerHint str who to ask (defaults to the panel admin address) The sidebar is still rendered so the operator can navigate somewhere they are allowed to be. ============================================================================== {% endcomment %} {% block title %}Permission Denied{% endblock %} {% block content %}
Your account is not allowed to perform this action.
{% if deniedAction %} The action {{ deniedAction }} is not available to your account on this panel. {% else %} This area of {{ CLOUDPANEL.PANEL_NAME|default:"CloudPanel" }} is restricted. {% endif %}
CloudPanel enforces access control on the server, not in the browser — this page means the server rejected the request, so retrying or editing the URL will not change the outcome.
| Signed in as | {{ currentUserName|default:"unknown" }} |
| Required permission | {{ requiredACL }} |
| Requested path | {{ request.path }} |
| Who can grant this | {{ ownerHint|default:CLOUDPANEL.ADMIN_EMAIL|default:"admin@a1hosting.net" }} |