{% htmlcompress %}
<!DOCTYPE html>
<html>
<head>
  {{ include("apl_includes/header_meta.twig") }}
</head>
<body class="hold-transition skin-black sidebar-mini">
<div class="wrapper">
  <header class="main-header">
    {{ include("apl_includes/header.twig") }}
  </header>
  <aside class="main-sidebar">
    {{ include("apl_includes/sidebar.twig") }}
  </aside>
  <div class="content-wrapper">
    <section class="content-header">
      <div class="{{ page_message_class }}">
        <h4>{{ page_title }}</h4>
        <p>{{ page_message|striptags("<a><b><br><i><li><strong><u><ul>")|raw }}</p>
      </div>
    </section>
    <section class="content">
      <div class="box box-primary">
        <div class="box-header with-border">
          <h3 class="box-title">{{ page_title }}</h3>
        </div>
        <form action="{{ script_filename }}" method="post">
        <div class="box-body">
          <div class="row">
            <div class="col-md-6">
              <div class="form-group">
                <label>IP address</label>
                <input type="text" name="banned_host_ip" value="{% if action_success!=1 %}{{ banned_host_ip }}{% endif %}" class="form-control" placeholder="IP address">
              </div>
            </div>
            <div class="col-md-6">
              <div class="form-group">
                <label>Comments</label>
                <input type="text" name="banned_host_comments" value="{% if action_success!=1 %}{{ banned_host_comments }}{% endif %}" class="form-control" placeholder="Additional comments (optional)">
              </div>
            </div>
          </div>
        </div>
        <div class="box-footer">
            <button type="submit" name="submit_ok" class="btn btn-primary">Submit</button>
        </div>
        </form>
      </div>
    </section>
  </div>
  <footer class="main-footer">
    {{ include("apl_includes/footer.twig") }}
  </footer>
</div>
{{ include("apl_includes/footer_meta.twig") }}
</body>
</html>
{% endhtmlcompress %}