blob: 2a5acb79bfbafa5a0e722fd6e8fc2641582ff78e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "layout.html" %}
{% block content %}
<div class="container">
<div class="row">
<div class="span12">
<h1>Internal server error <small>Error 500</small></h1>
<br>
<p>Something went wrong on the server. We are correcting the issue. Contact vlabs team if the problem persists. Please click <a href="{% url 'sbhs_server.account.views.index' %}">here</a> to go to the homepage.</p>
</div>
</div>
</div>
{% endblock %}
|