aboutsummaryrefslogtreecommitdiff
path: root/app/templates/flask_user_layout.html
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-01-19 19:48:41 +0000
committerrubenwardy <rw@rubenwardy.com>2020-01-19 19:48:41 +0000
commite115b0678cce0f918e1985524751f95c21dd2b2d (patch)
tree601e7b08c007d253bb2cf379f313c640ccb0e7e4 /app/templates/flask_user_layout.html
parent0bda16de6dae7a684acf4332312765fe2d78741c (diff)
downloadcheatdb-e115b0678cce0f918e1985524751f95c21dd2b2d.tar.xz
Fix password issues caused by Flask-User migration
Diffstat (limited to 'app/templates/flask_user_layout.html')
-rw-r--r--app/templates/flask_user_layout.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/templates/flask_user_layout.html b/app/templates/flask_user_layout.html
new file mode 100644
index 0000000..272e1ec
--- /dev/null
+++ b/app/templates/flask_user_layout.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+
+{% block container %}
+ <main class="container mt-4">
+ <div class="card">
+ <!-- <h2 class="card-header">{{ self.title() }}</h2> -->
+ <div class="card-body">
+ {% block content %}
+ {% endblock %}
+ </div>
+ </div>
+ </main>
+{% endblock %}