{{ message }}
{% if status_code == 400 %}
The request was invalid. Check your input and try again.
{% elif status_code == 403 %}
You don't have permission to access this page. Contact an admin if you need access.
{% elif status_code == 404 %}
The page you're looking for doesn't exist or has been moved.
{% elif status_code == 429 %}
Too many requests. Wait a moment and try again.
{% elif status_code >= 500 %}
An internal error occurred. If this persists, check the server logs.
{% endif %}