jfx/ci-report

View on GitHub
templates/bundles/TwigBundle/Exception/error403.html.twig

Summary

Maintainability
Test Coverage
{% extends 'base.html.twig' %}

{% block title %}{{ parent() }} - 403 Forbidden{% endblock %}

{% block breadcrumb %}
  <div class="jumbotron jumbotron-error">
    <h1><i class="fa fa-ban red"></i> 403 Forbidden</h1>
    <p class="lead">Sorry! You don't have access permissions for that on <em>ci-report</em>.</p>
    <p><a id="a_home" href="{{ path('homepage') }}" class="btn btn-outline-success">Take me to the Projects list page</a>
    </p>
  </div>
{% endblock %}

{% block container %}
    <div class="row">
        <div class="col-6">
          <h2>What happened?</h2>
          <p class="lead">A 403 error status indicates that you don't have permission to access the page. In general, web servers and websites have directories and files that are not open to the public web for security reasons.</p>
        </div>
        <div class="col-6">
          <h2>What can I do?</h2>
          <p>Please use your browser's back button and check that you're in the right place. If you need immediate assistance, please send us an email instead.</p>
       </div>
   </div>
{% endblock %}