diff options
| author | rubenwardy <rw@rubenwardy.com> | 2020-01-19 19:48:41 +0000 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2020-01-19 19:48:41 +0000 |
| commit | e115b0678cce0f918e1985524751f95c21dd2b2d (patch) | |
| tree | 601e7b08c007d253bb2cf379f313c640ccb0e7e4 /app/templates/flask_user_layout.html | |
| parent | 0bda16de6dae7a684acf4332312765fe2d78741c (diff) | |
| download | cheatdb-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.html | 13 |
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 %} |
