flask-py / templates /home.html
Gagan0141's picture
Upload 7 files
090b756 verified
raw
history blame contribute delete
721 Bytes
<!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>