deleted: templates/user_giveaways_old.html
deleted: templates/user_landing_page_corrupted.html
This commit is contained in:
@@ -1,241 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Your Won Giveaways - {{ guild_name }}</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, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
|
|
||||||
min-height: 100vh;
|
|
||||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
||||||
color: #e0e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.giveaways-container {
|
|
||||||
background: rgba(30, 30, 46, 0.95);
|
|
||||||
border-radius: 20px;
|
|
||||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
||||||
padding: 2rem;
|
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.giveaways-header {
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.giveaways-title {
|
|
||||||
color: #f8f9fa;
|
|
||||||
font-weight: 700;
|
|
||||||
font-size: 2.5rem;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.giveaways-subtitle {
|
|
||||||
color: #a0a0a0;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gift-icon {
|
|
||||||
font-size: 3rem;
|
|
||||||
color: #ffd700;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
animation: bounce 2s infinite;
|
|
||||||
text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes bounce {
|
|
||||||
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
|
|
||||||
40% { transform: translateY(-10px); }
|
|
||||||
60% { transform: translateY(-5px); }
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-container {
|
|
||||||
background: rgba(40, 40, 56, 0.9);
|
|
||||||
border-radius: 15px;
|
|
||||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table {
|
|
||||||
margin-bottom: 0;
|
|
||||||
color: #e0e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table thead th {
|
|
||||||
background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
|
|
||||||
color: #f7fafc;
|
|
||||||
border: none;
|
|
||||||
padding: 1rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 1px;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table tbody tr {
|
|
||||||
background: rgba(45, 55, 72, 0.6);
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table tbody tr:hover {
|
|
||||||
background: rgba(74, 85, 104, 0.8);
|
|
||||||
transform: translateY(-2px);
|
|
||||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.table tbody td {
|
|
||||||
padding: 1rem;
|
|
||||||
vertical-align: middle;
|
|
||||||
border: none;
|
|
||||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
||||||
color: #e0e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.status-badge {
|
|
||||||
font-size: 0.9rem;
|
|
||||||
padding: 0.5rem 1rem;
|
|
||||||
border-radius: 25px;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.badge-success-custom {
|
|
||||||
background: linear-gradient(135deg, #48bb78, #38a169);
|
|
||||||
color: white;
|
|
||||||
box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.badge-warning-custom {
|
|
||||||
background: linear-gradient(135deg, #ffa500, #ff8c00);
|
|
||||||
color: white;
|
|
||||||
box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.redeem-btn {
|
|
||||||
background: linear-gradient(135deg, #4299e1, #3182ce);
|
|
||||||
border: none;
|
|
||||||
border-radius: 25px;
|
|
||||||
padding: 0.5rem 1.5rem;
|
|
||||||
color: #ffffff;
|
|
||||||
font-weight: 600;
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.redeem-btn:hover {
|
|
||||||
background: linear-gradient(135deg, #3182ce, #2c5282);
|
|
||||||
color: #ffffff;
|
|
||||||
text-decoration: none;
|
|
||||||
transform: translateY(-2px);
|
|
||||||
box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.back-button {
|
|
||||||
background: linear-gradient(135deg, #4a5568, #2d3748);
|
|
||||||
border: none;
|
|
||||||
border-radius: 25px;
|
|
||||||
padding: 0.75rem 2rem;
|
|
||||||
color: #f7fafc;
|
|
||||||
font-weight: 600;
|
|
||||||
text-decoration: none;
|
|
||||||
display: inline-block;
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
margin-top: 2rem;
|
|
||||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.back-button:hover {
|
|
||||||
background: linear-gradient(135deg, #2d3748, #1a202c);
|
|
||||||
color: #f7fafc;
|
|
||||||
text-decoration: none;
|
|
||||||
transform: translateY(-2px);
|
|
||||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-giveaways {
|
|
||||||
text-align: center;
|
|
||||||
padding: 3rem;
|
|
||||||
color: #a0aec0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-giveaways-icon {
|
|
||||||
font-size: 4rem;
|
|
||||||
color: #4a5568;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Responsive Design */
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.giveaways-title {
|
|
||||||
font-size: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.giveaways-container {
|
|
||||||
padding: 1rem;
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table thead th,
|
|
||||||
.table tbody td {
|
|
||||||
padding: 0.75rem 0.5rem;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
{% include 'navigation.html' %}
|
|
||||||
<div class="container mt-5">
|
|
||||||
<h2 class="text-center">Your Won Giveaways on {{ guild_name }}</h2>
|
|
||||||
<p class="text-center text-muted">Here you can view all the giveaways you've won on this server.</p>
|
|
||||||
|
|
||||||
<div class="table-container mt-4">
|
|
||||||
<table class="table table-striped">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th scope="col">Name</th>
|
|
||||||
<th scope="col">Platform</th>
|
|
||||||
<th scope="col">Status</th>
|
|
||||||
<th scope="col" class="text-center">Action</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{% for giveaway in won_giveaways %}
|
|
||||||
<tr>
|
|
||||||
<td>{{ giveaway.name }}</td>
|
|
||||||
<td>{{ giveaway.platform }}</td>
|
|
||||||
<td>
|
|
||||||
{% if giveaway.aktiv %}
|
|
||||||
<span class="badge badge-success status-badge">Redeemed</span>
|
|
||||||
{% else %}
|
|
||||||
<span class="badge badge-warning status-badge">Not Redeemed</span>
|
|
||||||
{% endif %}
|
|
||||||
</td>
|
|
||||||
<td class="text-center">
|
|
||||||
{% if giveaway.aktiv %}
|
|
||||||
<a href="{{ url_for('redeem_giveaway', guild_id=guild_id, uuid=giveaway['uuid']) }}" class="btn btn-secondary btn-sm redeem-btn">View Key</a>
|
|
||||||
{% else %}
|
|
||||||
<a href="{{ url_for('redeem_giveaway', guild_id=guild_id, uuid=giveaway['uuid']) }}" class="btn btn-primary btn-sm redeem-btn">Redeem</a>
|
|
||||||
{% endif %}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{% endfor %}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
{% if won_giveaways|length == 0 %}
|
|
||||||
<p class="text-center text-muted">You haven't won any giveaways on this server yet.</p>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,231 +0,0 @@
|
|||||||
<!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> <img src="https://cdn.discordapp.com/icons/{{ guild.id }}/{{ guild.icon }}.png"
|
|
||||||
class="server-icon"
|
|
||||||
alt="Server Icon"
|
|
||||||
onerror="this.style.display='none'; this.parentNode.insertAdjacentHTML('afterbegin', '<div class="server-icon-fallback" style="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: #f7fafc; font-size: 4rem; font-weight: bold;">{{ guild.name[0] if guild.name else 'S' }}</div>');" <img src="https://cdn.discordapp.com/icons/{{ guild.id }}/{{ guild.icon }}.png"
|
|
||||||
class="server-icon"
|
|
||||||
alt="Server Icon"
|
|
||||||
onerror="this.onerror=null; this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMTAwIiBjeT0iMTAwIiByPSIxMDAiIGZpbGw9IiM0YTU1NjgiLz48dGV4dCB4PSIxMDAiIHk9IjExMCIgZm9udC1mYW1pbHk9IkFyaWFsLCBzYW5zLXNlcmlmIiBmb250LXNpemU9IjYwIiBmaWxsPSIjZjdmYWZjIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIj4n+ (guild.name ? guild.name[0] : 'S') +'</text></svg>';">");
|
|
||||||
<div class="card-body"> <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, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
|
|
||||||
min-height: 100vh;
|
|
||||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
||||||
color: #e0e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.landing-container {
|
|
||||||
background: rgba(30, 30, 46, 0.95);
|
|
||||||
border-radius: 20px;
|
|
||||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
||||||
padding: 2rem;
|
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.welcome-header {
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.welcome-title {
|
|
||||||
color: #f8f9fa;
|
|
||||||
font-weight: 700;
|
|
||||||
font-size: 2.5rem;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.welcome-subtitle {
|
|
||||||
color: #a0a0a0;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
.server-card {
|
|
||||||
background: rgba(45, 55, 72, 0.8);
|
|
||||||
border-radius: 15px;
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
||||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.server-card:hover {
|
|
||||||
transform: translateY(-8px);
|
|
||||||
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
|
|
||||||
border-color: rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.server-icon {
|
|
||||||
width: 100%;
|
|
||||||
height: 200px;
|
|
||||||
object-fit: cover;
|
|
||||||
border-radius: 15px 15px 0 0;
|
|
||||||
transition: transform 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.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: #f7fafc;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 1.3rem;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.server-description {
|
|
||||||
color: #cbd5e0;
|
|
||||||
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-block;
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
margin: 0.25rem;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary-custom {
|
|
||||||
background: linear-gradient(135deg, #4299e1, #3182ce);
|
|
||||||
color: #ffffff;
|
|
||||||
box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary-custom:hover {
|
|
||||||
background: linear-gradient(135deg, #3182ce, #2c5282);
|
|
||||||
color: #ffffff;
|
|
||||||
text-decoration: none;
|
|
||||||
transform: translateY(-2px);
|
|
||||||
box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-secondary-custom {
|
|
||||||
background: linear-gradient(135deg, #805ad5, #6b46c1);
|
|
||||||
color: #ffffff;
|
|
||||||
box-shadow: 0 4px 12px rgba(128, 90, 213, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-secondary-custom:hover {
|
|
||||||
background: linear-gradient(135deg, #6b46c1, #553c9a);
|
|
||||||
color: #ffffff;
|
|
||||||
text-decoration: none;
|
|
||||||
transform: translateY(-2px);
|
|
||||||
box-shadow: 0 8px 20px rgba(128, 90, 213, 0.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-servers {
|
|
||||||
text-align: center;
|
|
||||||
padding: 3rem;
|
|
||||||
color: #a0aec0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-servers-icon {
|
|
||||||
font-size: 4rem;
|
|
||||||
color: #4a5568;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.user-icon {
|
|
||||||
color: #4299e1;
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Responsive Design */
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.welcome-title {
|
|
||||||
font-size: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.server-icon {
|
|
||||||
height: 150px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.landing-container {
|
|
||||||
padding: 1rem;
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</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">
|
|
||||||
<img src="https://cdn.discordapp.com/icons/{{ guild.id }}/{{ guild.icon }}.png"
|
|
||||||
class="server-icon"
|
|
||||||
alt="Server Icon"
|
|
||||||
onerror="this.onerror=null; this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMTAwIiBjeT0iMTAwIiByPSIxMDAiIGZpbGw9IiM0YTU1NjgiLz48dGV4dCB4PSIxMDAiIHk9IjExMCIgZm9udC1mYW1pbHk9IkFyaWFsLCBzYW5zLXNlcmlmIiBmb250LXNpemU9IjYwIiBmaWxsPSIjZjdmYWZjIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIj4ke guild.name[0] if guild.name else 'S'}</text></svg>';">
|
|
||||||
<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>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
Reference in New Issue
Block a user