mirror of
https://github.com/Sudo-JHare/SMARTFLARE-Smart-App-Gallery.git
synced 2025-07-30 02:35:33 +00:00
289 lines
12 KiB
HTML
289 lines
12 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en"> <head>
|
|
<meta charset="UTF-8">
|
|
<title>SMARTFLARE - Smart App Gallery - {% block title %}{% endblock %}</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
|
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
<style>
|
|
/* Default (Light Theme) Styles */
|
|
.navbar-light {
|
|
background-color: #ffffff !important;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
.navbar-brand {
|
|
font-weight: bold;
|
|
color: #007bff !important;
|
|
}
|
|
.nav-link {
|
|
color: #333 !important;
|
|
transition: color 0.2s ease;
|
|
}
|
|
.nav-link:hover {
|
|
color: #007bff !important;
|
|
}
|
|
.nav-link.active {
|
|
color: #007bff !important;
|
|
font-weight: bold;
|
|
border-bottom: 2px solid #007bff;
|
|
}
|
|
.dropdown-menu {
|
|
animation: fadeIn 0.3s ease;
|
|
border: none;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
border-radius: 8px;
|
|
}
|
|
.dropdown-item {
|
|
padding: 0.5rem 1rem;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
.dropdown-item:hover {
|
|
background-color: #e9ecef;
|
|
}
|
|
.dropdown-item.active {
|
|
background-color: #007bff;
|
|
color: white !important;
|
|
}
|
|
.app-card {
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
/* Add default background/color if needed for light mode explicitly */
|
|
background-color: #ffffff;
|
|
color: #212529;
|
|
}
|
|
.app-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
|
|
}
|
|
.card-img-top {
|
|
background-color: #f8f9fa;
|
|
}
|
|
body {
|
|
/* Default body styles for light mode */
|
|
background-color: #f8f9fa; /* Example light background */
|
|
color: #212529; /* Default text color */
|
|
}
|
|
.card {
|
|
/* Default card styles */
|
|
background-color: #ffffff;
|
|
}
|
|
.text-muted {
|
|
/* Ensure default */
|
|
color: #6c757d !important;
|
|
}
|
|
|
|
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; transform: translateY(-10px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
/* Dark Theme Styles - Triggered by html[data-theme="dark"] */
|
|
html[data-theme="dark"] body {
|
|
background-color: #212529; /* Dark background for body */
|
|
color: #f8f9fa; /* Light text */
|
|
}
|
|
html[data-theme="dark"] .navbar-light {
|
|
background-color: #343a40 !important;
|
|
border-bottom: 1px solid #495057;
|
|
}
|
|
html[data-theme="dark"] .navbar-brand { /* Override brand color */
|
|
color: #4dabf7 !important;
|
|
}
|
|
html[data-theme="dark"] .nav-link {
|
|
color: #f8f9fa !important;
|
|
}
|
|
html[data-theme="dark"] .nav-link:hover,
|
|
html[data-theme="dark"] .nav-link.active {
|
|
color: #4dabf7 !important;
|
|
border-bottom-color: #4dabf7; /* Ensure border color matches */
|
|
}
|
|
html[data-theme="dark"] .dropdown-menu {
|
|
background-color: #495057;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
}
|
|
html[data-theme="dark"] .dropdown-item {
|
|
color: #f8f9fa;
|
|
}
|
|
html[data-theme="dark"] .dropdown-item:hover {
|
|
background-color: #6c757d;
|
|
}
|
|
html[data-theme="dark"] .dropdown-item.active {
|
|
background-color: #4dabf7;
|
|
color: white !important; /* Ensure text stays white */
|
|
}
|
|
html[data-theme="dark"] .app-card {
|
|
background-color: #343a40;
|
|
color: #f8f9fa;
|
|
border: 1px solid #495057; /* Optional: add border for contrast */
|
|
}
|
|
html[data-theme="dark"] .card { /* General card styling */
|
|
background-color: #343a40;
|
|
border: 1px solid #495057;
|
|
}
|
|
html[data-theme="dark"] .card-img-top {
|
|
background-color: #495057;
|
|
}
|
|
html[data-theme="dark"] .text-muted {
|
|
color: #adb5bd !important;
|
|
}
|
|
/* Add any other specific dark mode overrides */
|
|
html[data-theme="dark"] h1,
|
|
html[data-theme="dark"] h5 {
|
|
color: #f8f9fa; /* Ensure headings are light */
|
|
}
|
|
html[data-theme="dark"] .form-label {
|
|
color: #f8f9fa; /* Form labels */
|
|
}
|
|
html[data-theme="dark"] .form-control {
|
|
background-color: #495057;
|
|
color: #f8f9fa;
|
|
border-color: #6c757d;
|
|
}
|
|
html[data-theme="dark"] .form-control::placeholder {
|
|
color: #adb5bd;
|
|
}
|
|
html[data-theme="dark"] .form-select {
|
|
background-color: #495057;
|
|
color: #f8f9fa;
|
|
border-color: #6c757d;
|
|
}
|
|
html[data-theme="dark"] .alert-danger {
|
|
background-color: #dc3545; /* Keep alerts visible */
|
|
color: white;
|
|
border-color: #dc3545;
|
|
}
|
|
html[data-theme="dark"] .alert-success {
|
|
background-color: #198754;
|
|
color: white;
|
|
border-color: #198754;
|
|
}
|
|
/* Ensure avatar styles work in dark mode if needed */
|
|
.initials-avatar {
|
|
display: inline-block;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50%;
|
|
background-color: #007bff; /* Or another color */
|
|
color: white;
|
|
text-align: center;
|
|
line-height: 30px;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
vertical-align: middle;
|
|
}
|
|
.user-avatar {
|
|
border-radius: 50%;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-light">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="{{ url_for('gallery.gallery') }}">SMART App Gallery</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span> </button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav me-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.endpoint == 'gallery.gallery' %}active{% endif %}" href="{{ url_for('gallery.gallery') }}">Gallery</a>
|
|
</li>
|
|
{% if current_user.is_authenticated %}
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.endpoint == 'gallery.register' %}active{% endif %}" href="{{ url_for('gallery.register') }}">Register App</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item">
|
|
<button type="button" class="nav-link theme-toggle" onclick="toggleTheme()" style="background:none; border:none; padding:inherit; cursor:pointer; display:inline-block; line-height:inherit;">Toggle Theme</button>
|
|
</li>
|
|
{% if current_user.is_authenticated %}
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
{% if current_user.email and current_user.email | md5 %}
|
|
<img src="https://www.gravatar.com/avatar/{{ current_user.email | md5 }}?s=30&d=identicon" class="user-avatar" alt="User Avatar">
|
|
{% else %}
|
|
<span class="initials-avatar">{{ current_user.username[:2] | upper }}</span>
|
|
{% endif %}
|
|
{{ current_user.username }} </a>
|
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="userDropdown">
|
|
<li><a class="dropdown-item {% if request.endpoint == 'gallery.my_listings' %}active{% endif %}" href="{{ url_for('gallery.my_listings') }}">My Listings</a></li>
|
|
<li><hr class="dropdown-divider"></li>
|
|
<li><a class="dropdown-item" href="{{ url_for('auth.logout') }}">Logout</a></li>
|
|
</ul>
|
|
</li>
|
|
{% else %}
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.endpoint == 'auth.login' %}active{% endif %}" href="{{ url_for('auth.login') }}">Login</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.endpoint == 'auth.register' %}active{% endif %}" href="{{ url_for('auth.register') }}">Register</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class="container mt-4">
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ category }} alert-dismissible fade show" role="alert">
|
|
{{ message }}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
|
|
<script>
|
|
function toggleTheme() {
|
|
const html = document.documentElement;
|
|
const currentTheme = html.getAttribute('data-theme');
|
|
if (currentTheme === 'dark') {
|
|
html.removeAttribute('data-theme');
|
|
localStorage.setItem('theme', 'light');
|
|
} else {
|
|
html.setAttribute('data-theme', 'dark');
|
|
localStorage.setItem('theme', 'dark');
|
|
}
|
|
}
|
|
|
|
// Apply the saved theme on initial load
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const savedTheme = localStorage.getItem('theme');
|
|
if (savedTheme === 'dark') {
|
|
document.documentElement.setAttribute('data-theme', 'dark');
|
|
}
|
|
// Optional: Set to light explicitly if needed, though lack of attribute usually defaults to light
|
|
// else {
|
|
// document.documentElement.removeAttribute('data-theme');
|
|
// }
|
|
|
|
// Add active class to nav links based on current page
|
|
const currentPath = window.location.pathname;
|
|
document.querySelectorAll('#navbarNav .nav-link').forEach(link => {
|
|
if (link.getAttribute('href') === currentPath) {
|
|
link.classList.add('active');
|
|
} else {
|
|
link.classList.remove('active'); // Ensure others aren't marked active
|
|
}
|
|
});
|
|
// Handle dropdown item active state similarly if needed
|
|
document.querySelectorAll('#userDropdown + .dropdown-menu .dropdown-item').forEach(link => {
|
|
if (link.getAttribute('href') === currentPath) {
|
|
link.classList.add('active');
|
|
} else {
|
|
link.classList.remove('active');
|
|
}
|
|
});
|
|
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |