Add support for a flash message sidebar

This commit is contained in:
Jonas Schäfer
2021-02-06 12:00:45 +01:00
parent 8b66c5a063
commit 9876e42fb7
4 changed files with 48 additions and 6 deletions

View File

@@ -9,7 +9,7 @@
{{ super() }}
{% endblock %}
{% block body %}
<div id="mwrap"><main><div class="form layout-expanded">
<div id="mwrap"><div class="filler"></div><main><div class="form layout-expanded">
<h1 class="form-title">{{ config["SITE_NAME"] }}</h1>
<p class="form-desc">{{ _("Enter your Snikket address and password to manage your account.") }}</p>
<form method="POST" action="{{ url_for('.login') }}" name="login" id="login-form" onsubmit="return domainCheck();" data-addressid="{{ form.address.id }}" data-domain="{{ config["SNIKKET_DOMAIN"] }}">
@@ -51,6 +51,6 @@ var domainCheck = function() {
return true;
};
</script>
</div></main></div>
</div></main><div class="filler"></div></div>
{%- include "_footer.html" -%}
{% endblock %}