allowthem-server 0.0.6

HTTP server and middleware for allowthem
Documentation
{% extends "_partials/_auth_shell.html" %}

{% block title %}{{ error_title | default("Error") }} — {{ title_brand | default("allowthem") }}{% endblock %}

{% block auth_main %}
{% import "_partials/_auth_macros.html" as auth %}
<main class="wf-auth-form">
  <div class="wf-auth-top">
    {{ auth.kicker(app_name, error_title | default("Error")) }}
  </div>

  <div class="wf-auth-wrap">
    <h1>{{ error_title | default("Something went wrong") }}</h1>
    <p class="wf-auth-sub">{{ error_message | default("The page you are looking for could not be found.") }}</p>

    <p class="wf-caption wf-mt-5">
      <a href="/">Return home</a>
    </p>
  </div>
</main>
{% endblock %}