layout.html 617 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>ILS Password Manager</title>
  6. <link rel="stylesheet" href="{{ url_for('static', filename='bootstrap-5.3.0-alpha1-dist/css/bootstrap.css') }}">
  7. <script src="{{ url_for('static', filename='bootstrap-5.3.0-alpha1-dist/js/bootstrap.bundle.js') }}"></script>
  8. </head>
  9. <body class="bg-light">
  10. <div class="container">
  11. <div class="row mt-5 context-justify-center">
  12. <div class="col-12 text-center">
  13. <h1>ILS Password Reset Tool</h1>
  14. </div>
  15. </div>
  16. {% block content %}{% endblock %}
  17. </div>
  18. </body>
  19. </html>