SciPost Code Repository

Skip to content
Snippets Groups Projects
403.html 841 B
Newer Older
{% load static %}

{% block pagetitle %}: 403{% endblock pagetitle %}

Jorran de Wit's avatar
Jorran de Wit committed
{% block content %}
Jorran de Wit's avatar
Jorran de Wit committed
<div class="row">
    <div class="col-12">
      <div style="text-align: center;">
        <img src="{% static 'scipost/images/logo_scipost_RGB_HTML_groot.png' %}" alt="SciPost logo" width="240" style="margin-top: 20px; margin-bottom: 20px" />
        <h1>You are not authorized to view the requested page.</h1>
Jorran de Wit's avatar
Jorran de Wit committed
          <h2>403</h2>
          {% if request.user.is_anonymous %}
            <p style="margin-top: 20px;">Please <a href="{% url 'scipost:login' %}">login</a> first, and try again.</p>
          {% else %}
            <p style="margin-top: 20px;">Continue to your <a href="{% url 'scipost:personal_page' %}">personal page</a>.</p>
          {% endif %}
      </div>
    </div>
</div>
Jorran de Wit's avatar
Jorran de Wit committed
{% endblock %}