2015-12-13 09:34:12 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}<title>DNS Control Panel - 500 Error</title>{% endblock %}
|
|
|
|
|
|
|
|
{% block dashboard_stat %}
|
2016-04-22 05:30:41 +00:00
|
|
|
<!-- Content Header (Page header) -->
|
|
|
|
<section class="content-header">
|
|
|
|
<h1>
|
|
|
|
500
|
|
|
|
<small>Error</small>
|
|
|
|
</h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li><a href="{{ url_for('dashboard') }}"><i class="fa fa-dashboard"></i>Home</a></li>
|
|
|
|
<li>500</li>
|
|
|
|
</ol>
|
|
|
|
</section>
|
2015-12-13 09:34:12 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2016-04-22 05:30:41 +00:00
|
|
|
<!-- Main content -->
|
|
|
|
<section class="content">
|
|
|
|
<div class="error-page">
|
|
|
|
<h2 class="headline text-yellow">500</h2>
|
|
|
|
<div class="error-content">
|
|
|
|
<h3>
|
|
|
|
<i class="fa fa-warning text-yellow"></i> Oops! Something went wrong
|
|
|
|
</h3>
|
|
|
|
<p>
|
|
|
|
Try again later.
|
|
|
|
You may <a href="{{ url_for('dashboard') }}">return to the dashboard</a>.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<!-- /.error-content -->
|
|
|
|
</div>
|
|
|
|
<!-- /.error-page -->
|
|
|
|
</section>
|
|
|
|
<!-- /.content -->
|
2015-12-13 09:34:12 +00:00
|
|
|
{% endblock %}
|