Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>WhatsApp Chat Analyzer</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}"> | |
| </head> | |
| <body> | |
| <nav class="navbar"> | |
| <div class="container"> | |
| <div class="brand">💬 WhatsApp Analyzer</div> | |
| <a class="github" href="https://github.com/" target="_blank" rel="noopener">GitHub</a> | |
| </div> | |
| </nav> | |
| <main class="container"> | |
| {% with messages = get_flashed_messages() %} | |
| {% if messages %} | |
| <div class="alert"> | |
| {% for msg in messages %} | |
| <div>{{ msg }}</div> | |
| {% endfor %} | |
| </div> | |
| {% endif %} | |
| {% endwith %} | |
| {% block content %}{% endblock %} | |
| </main> | |
| <footer class="footer"> | |
| <div class="container">Built with Flask & Matplotlib</div> | |
| </footer> | |
| </body> | |
| </html> | |