2015-12-13 09:34:12 +00:00
|
|
|
{% extends "base.html" %}
|
2019-12-02 03:32:03 +00:00
|
|
|
{% block title %}<title>PowerDNS-Admin - 400 Error</title>{% endblock %}
|
2015-12-13 09:34:12 +00:00
|
|
|
|
|
|
|
{% block dashboard_stat %}
|
2016-06-18 04:41:01 +00:00
|
|
|
<!-- Content Header (Page header) -->
|
2016-04-22 05:30:41 +00:00
|
|
|
<section class="content-header">
|
|
|
|
<h1>
|
|
|
|
400
|
|
|
|
<small>Error</small>
|
|
|
|
</h1>
|
|
|
|
<ol class="breadcrumb">
|
2019-12-02 03:32:03 +00:00
|
|
|
<li><a href="{{ url_for('dashboard.dashboard') }}"><i class="fa fa-dashboard"></i>Home</a></li>
|
2016-04-22 05:30:41 +00:00
|
|
|
<li>400</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">
|
2016-06-18 04:41:01 +00:00
|
|
|
<div class="error-page">
|
|
|
|
<h2 class="headline text-yellow">400</h2>
|
|
|
|
<div class="error-content">
|
|
|
|
<h3>
|
|
|
|
<i class="fa fa-warning text-yellow"></i> Oops! Bad request
|
|
|
|
</h3>
|
|
|
|
<p>
|
2019-12-04 04:50:46 +00:00
|
|
|
{% if msg %}
|
|
|
|
{{ msg }}
|
|
|
|
{% else %}
|
|
|
|
The server refused to process your request and return a 400 error.
|
|
|
|
{% endif %}
|
|
|
|
<br/>You may <a href="{{ url_for('dashboard.dashboard') }}">return to the dashboard</a>.
|
2016-06-18 04:41:01 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<!-- /.error-content -->
|
|
|
|
</div>
|
|
|
|
<!-- /.error-page -->
|
2016-04-22 05:30:41 +00:00
|
|
|
</section>
|
|
|
|
<!-- /.content -->
|
2015-12-13 09:34:12 +00:00
|
|
|
{% endblock %}
|