modified: templates/edit_giveaway.html modified: templates/edit_user.html new file: templates/footer.html modified: templates/global_admin_dashboard.html modified: templates/leaderboard.html modified: templates/logs.html modified: templates/redeem_giveaway.html modified: templates/server_admin_dashboard.html modified: templates/server_giveaways.html modified: templates/settings.html modified: templates/user_dashboard.html modified: templates/user_giveaways.html modified: templates/user_landing_page.html modified: templates/user_server_data.html modified: templates/users.html
294 lines
10 KiB
HTML
294 lines
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>User Landing Page</title>
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background: linear-gradient(135deg, #0c1426 0%, #1a1f2e 25%, #2d3748 75%, #0c1426 100%);
|
|
min-height: 100vh;
|
|
color: #e2e8f0;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
.landing-container {
|
|
background: rgba(26, 31, 46, 0.8);
|
|
backdrop-filter: blur(15px);
|
|
border: 1px solid rgba(102, 126, 234, 0.2);
|
|
border-radius: 20px;
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
padding: 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.welcome-header {
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
|
|
}
|
|
|
|
.welcome-title {
|
|
color: #e2e8f0;
|
|
font-weight: 700;
|
|
font-size: 2.5rem;
|
|
margin-bottom: 0.5rem;
|
|
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.welcome-subtitle {
|
|
color: #a0aec0;
|
|
font-size: 1.2rem;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.server-card {
|
|
background: rgba(45, 55, 72, 0.8);
|
|
border-radius: 15px;
|
|
border: 1px solid rgba(102, 126, 234, 0.2);
|
|
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
|
|
transition: all 0.3s ease;
|
|
margin-bottom: 2rem;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.server-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, #667eea, #764ba2);
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.server-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.server-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
|
|
border-color: rgba(102, 126, 234, 0.5);
|
|
}
|
|
|
|
.server-icon {
|
|
width: 100%;
|
|
height: 200px;
|
|
object-fit: cover;
|
|
border-radius: 15px 15px 0 0;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.server-icon-fallback {
|
|
width: 100%;
|
|
height: 200px;
|
|
background: linear-gradient(135deg, #4a5568, #2d3748);
|
|
border-radius: 15px 15px 0 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #e2e8f0;
|
|
font-size: 4rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.server-card:hover .server-icon {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.server-card .card-body {
|
|
padding: 1.5rem;
|
|
background: rgba(45, 55, 72, 0.9);
|
|
}
|
|
|
|
.server-title {
|
|
color: #e2e8f0;
|
|
font-weight: 600;
|
|
font-size: 1.3rem;
|
|
margin-bottom: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.server-description {
|
|
color: #a0aec0;
|
|
font-size: 0.95rem;
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.server-button {
|
|
border-radius: 25px;
|
|
padding: 0.6rem 1.5rem;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
transition: all 0.3s ease;
|
|
margin: 0.25rem;
|
|
border: none;
|
|
}
|
|
|
|
.btn-primary-custom {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.btn-primary-custom:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.btn-secondary-custom {
|
|
background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
|
|
color: white;
|
|
box-shadow: 0 4px 12px rgba(56, 178, 172, 0.3);
|
|
}
|
|
|
|
.btn-secondary-custom:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 20px rgba(56, 178, 172, 0.4);
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.no-servers {
|
|
text-align: center;
|
|
padding: 3rem;
|
|
color: #a0aec0;
|
|
background: rgba(45, 55, 72, 0.4);
|
|
border: 1px solid rgba(102, 126, 234, 0.1);
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.no-servers-icon {
|
|
font-size: 4rem;
|
|
color: #667eea;
|
|
margin-bottom: 1rem;
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.5; }
|
|
}
|
|
|
|
.user-icon {
|
|
color: #667eea;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.server-icon-container {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.welcome-title {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.server-icon, .server-icon-fallback {
|
|
height: 150px;
|
|
}
|
|
|
|
.landing-container {
|
|
padding: 1rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.server-button {
|
|
width: 100%;
|
|
justify-content: center;
|
|
margin: 0.25rem 0;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
{% include 'navigation.html' %}
|
|
<div class="container-fluid">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-10 col-xl-8">
|
|
<div class="landing-container">
|
|
<div class="welcome-header">
|
|
<h1 class="welcome-title">
|
|
<i class="fas fa-user-circle user-icon"></i>Welcome, {{ g.user_info['username'] }}!
|
|
</h1>
|
|
<p class="welcome-subtitle">Select a server to view your server-specific data and statistics.</p>
|
|
</div>
|
|
|
|
<div class="row">
|
|
{% if g.guilds %}
|
|
{% for guild in g.guilds %}
|
|
<div class="col-lg-6 col-xl-4">
|
|
<div class="server-card">
|
|
<div class="server-icon-container">
|
|
{% if guild.icon %}
|
|
<img src="https://cdn.discordapp.com/icons/{{ guild.id }}/{{ guild.icon }}.png"
|
|
class="server-icon"
|
|
alt="Server Icon"
|
|
onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
|
|
<div class="server-icon-fallback" style="display: none;">
|
|
{{ guild.name[0] if guild.name else 'S' }}
|
|
</div>
|
|
{% else %}
|
|
<div class="server-icon-fallback">
|
|
{{ guild.name[0] if guild.name else 'S' }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<div class="card-body">
|
|
<h5 class="server-title">
|
|
<i class="fas fa-server"></i> {{ guild.name }}
|
|
</h5>
|
|
<p class="server-description">
|
|
Access your dashboard, statistics, and achievements for {{ guild.name }}.
|
|
</p>
|
|
<div class="text-center">
|
|
<a href="{{ url_for('user_dashboard', guild_id=guild.id) }}" class="server-button btn-primary-custom">
|
|
<i class="fas fa-tachometer-alt"></i> View Dashboard
|
|
</a>
|
|
<a href="{{ url_for('leaderboard', guild_id=guild.id) }}" class="server-button btn-secondary-custom">
|
|
<i class="fas fa-trophy"></i> Leaderboard
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% else %}
|
|
<div class="col-12">
|
|
<div class="no-servers">
|
|
<i class="fas fa-server no-servers-icon"></i>
|
|
<h3>No Servers Found</h3>
|
|
<p>You don't have access to any servers with this bot. Join a server with Multus Bot to get started!</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
|
|
</html>
|