| <!DOCTYPE html> |
| <html> |
| <head> |
| <title>Home</title> |
| <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> |
| </head> |
| <body> |
| <h1>🏠 Home Page</h1> |
| {% if username %} |
| <p>Welcome, <b>{{ username }}</b>!</p> |
| <a href="{{ url_for('logout') }}" class="btn">Logout</a> |
| {% if username == "Admin" %} |
| <br><br> |
| <a href="{{ url_for('download_db') }}" class="btn">⬇️ Download temp.db</a> |
| {% endif %} |
| {% else %} |
| <p>Welcome to the Home Page! Please login or signup.</p> |
| <a href="{{ url_for('login') }}" class="btn">Login</a> |
| <a href="{{ url_for('signup') }}" class="btn">Signup</a> |
| {% endif %} |
| </body> |
| </html> |
|
|