admin blueprint

This commit is contained in:
2023-06-08 19:58:07 +02:00
parent f7064811d7
commit bc57f6f747
12 changed files with 288 additions and 253 deletions

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% from 'bootstrap5/form.html' import render_form %}
{% block content %}
<div class="alert alert-info col-md-4" role="alert">
<h4 class="alert-heading">Change password for {{ user_name }}</h4>
<button class="btn btn-primary"
onclick="window.location.href='{{ url_for(back) }}'">Back</button>
<div class="row">
<div>{{ render_form(form) }}</div>
</div>
</div>
{% endblock %}