diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-27 10:25:11 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-27 10:25:11 +0200 |
commit | 20bdd4175ebb1bf9823b1dd7a427eee212997028 (patch) | |
tree | c57db374d6c16a0fbe5caef5079fa5433b868b8d /ogcp/templates/auth/delete_user.html | |
parent | 5ad2d2e72c8fc02474369fac1d3a39f9b3589368 (diff) |
templates: fix user form alignment
Add class="mx-5" to allign the form with the header of the page.
Diffstat (limited to 'ogcp/templates/auth/delete_user.html')
-rw-r--r-- | ogcp/templates/auth/delete_user.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ogcp/templates/auth/delete_user.html b/ogcp/templates/auth/delete_user.html index 5584a3e..de2cdf0 100644 --- a/ogcp/templates/auth/delete_user.html +++ b/ogcp/templates/auth/delete_user.html @@ -12,6 +12,7 @@ {{ wtf.quick_form(form, action=url_for('user_delete_post'), method='post', - button_map={'submit_btn':'primary'}) }} + button_map={'submit_btn':'primary'}, + extra_classes="mx-5") }} {% endblock %} |