1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>ILS Password Manager</title>
- <link rel="stylesheet" href="{{ url_for('static', filename='bootstrap-5.3.0-alpha1-dist/css/bootstrap.css') }}">
- <link rel="stylesheet" href="{{ url_for('static', filename='RemixIcon_Fonts_v2.5.0/fonts/remixicon.css') }}">
- <script src="{{ url_for('static', filename='bootstrap-5.3.0-alpha1-dist/js/bootstrap.bundle.js') }}"></script>
- </head>
- <body class="bg-light">
- <div class="container">
- <div class="row mt-5 context-justify-center">
- <div class="col-12 text-center">
- <h1>ILS Password Reset Tool</h1>
- </div>
- </div>
- {% block content %}{% endblock %}
- </div>
- </body>
- </html>
|