43 lines
507 B
HTML
43 lines
507 B
HTML
<html>
|
|
{% block header %}
|
|
<head>
|
|
<title>Binder DNS Admin Tool</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/style.css" />
|
|
</head>
|
|
|
|
{% endblock header %}
|
|
|
|
<body>
|
|
{% block errors %}
|
|
|
|
{% if errors %}
|
|
<div class="errors">
|
|
Errors were encountered:
|
|
<br>
|
|
|
|
{{ errors }}
|
|
|
|
{% if error_context %}
|
|
<br>
|
|
{{ error_context }}
|
|
{% endif %}
|
|
|
|
<hr>
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock errors %}
|
|
|
|
<br>
|
|
{% block body %}
|
|
|
|
{% endblock body %}
|
|
</body>
|
|
|
|
{% block footer %}
|
|
|
|
{% endblock footer %}
|
|
|
|
</html>
|