layout.html 731 B

1234567891011121314151617181920
  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. <link rel="stylesheet" href="{{ url_for('static', filename='RemixIcon_Fonts_v2.5.0/fonts/remixicon.css') }}">
  8. <script src="{{ url_for('static', filename='bootstrap-5.3.0-alpha1-dist/js/bootstrap.bundle.js') }}"></script>
  9. </head>
  10. <body class="bg-light">
  11. <div class="container">
  12. <div class="row mt-5 context-justify-center">
  13. <div class="col-12 text-center">
  14. <h1>ILS Password Reset Tool</h1>
  15. </div>
  16. </div>
  17. {% block content %}{% endblock %}
  18. </div>
  19. </body>
  20. </html>