Permalink
Find file
Fetching contributors…
Cannot retrieve contributors at this time
executable file 21 lines (17 sloc) 526 Bytes
{% extends "page.html" %}
{% block stylesheet %}
<link rel="stylesheet" href="{{ static_url("css/custom.css") }}" type="text/css"/>
{% endblock %}
{% block main %}
<div class="container">
<div class="row row-centered">
<div class="col-sm-8">
<h1> 403 Forbidden </h1>
<p>
Your username is not whitelisted on this server. Please contact the system administrator.
</p>
<a href="{{base_url}}/login" class="btn btn-primary" id="title">Title page</a>
</div>
</div>
</div>
{% endblock %}