modified: templates/edit_giveaway.html

modified:   templates/edit_user.html
	modified:   templates/global_admin_dashboard.html
	modified:   templates/landing.html
	modified:   templates/login.html
	modified:   templates/logs.html
	modified:   templates/navigation.html
	modified:   templates/server_admin_dashboard.html
	modified:   templates/user_dashboard.html
	modified:   templates/user_giveaways.html
	new file:   templates/user_giveaways_old.html
	modified:   templates/user_landing_page.html
This commit is contained in:
SimolZimol
2025-08-18 23:49:22 +02:00
parent 916b5d5131
commit 61f824a8c5
12 changed files with 2870 additions and 325 deletions

View File

@@ -5,97 +5,325 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Multus Bot</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-color: #f7f7f7;
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;
}
.hero {
background-image: url('https://source.unsplash.com/1600x900/?technology,ai');
background: linear-gradient(135deg, rgba(12, 20, 38, 0.9) 0%, rgba(26, 31, 46, 0.8) 50%, rgba(45, 55, 72, 0.9) 100%),
url('https://source.unsplash.com/1600x900/?technology,ai,dark');
background-size: cover;
color: white;
padding: 100px 0;
background-position: center;
color: #ffffff;
padding: 120px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.hero-overlay {
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
background: linear-gradient(45deg, rgba(76, 81, 191, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
animation: gradientShift 8s ease-in-out infinite alternate;
}
@keyframes gradientShift {
0% { opacity: 0.3; }
100% { opacity: 0.6; }
}
.hero-content {
position: relative;
z-index: 2;
}
.feature-section {
padding: 50px 0;
.hero h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
animation: float 6s ease-in-out infinite;
}
.footer {
background-color: #343a40;
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
.hero .lead {
font-size: 1.4rem;
margin-bottom: 2rem;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.hero-btn {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
padding: 1rem 2.5rem;
font-size: 1.1rem;
font-weight: 600;
border-radius: 50px;
color: white;
padding: 20px 0;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
position: relative;
overflow: hidden;
}
.hero-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.hero-btn:hover::before {
left: 100%;
}
.hero-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
color: white;
text-decoration: none;
}
.feature-section {
padding: 80px 0;
background: rgba(26, 31, 46, 0.6);
backdrop-filter: blur(10px);
border-radius: 20px;
margin: 2rem 0;
}
.feature-card {
background: rgba(45, 55, 72, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(102, 126, 234, 0.2);
border-radius: 20px;
padding: 2rem;
margin-bottom: 2rem;
text-align: center;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.feature-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;
}
.feature-card:hover::before {
transform: scaleX(1);
}
.feature-card:hover {
transform: translateY(-10px);
border-color: rgba(102, 126, 234, 0.5);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}
.feature-icon {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem auto;
font-size: 2rem;
color: white;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.feature-card h3 {
color: #e2e8f0;
font-weight: 600;
margin-bottom: 1rem;
}
.feature-card p {
color: #a0aec0;
line-height: 1.6;
}
.info-section {
background: rgba(12, 20, 38, 0.8);
backdrop-filter: blur(15px);
border-radius: 20px;
padding: 4rem 0;
margin: 2rem 0;
border: 1px solid rgba(102, 126, 234, 0.1);
}
.info-section h2 {
color: #e2e8f0;
font-weight: 700;
margin-bottom: 1.5rem;
}
.info-section .lead {
color: #a0aec0;
font-size: 1.2rem;
margin-bottom: 1rem;
}
.contact-section {
background: linear-gradient(135deg, rgba(26, 31, 46, 0.9) 0%, rgba(45, 55, 72, 0.8) 100%);
backdrop-filter: blur(15px);
border-radius: 20px;
padding: 4rem 0;
border: 1px solid rgba(102, 126, 234, 0.2);
}
.contact-btn {
background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
border: none;
padding: 0.8rem 2rem;
border-radius: 50px;
color: white;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
font-weight: 600;
}
.contact-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(118, 75, 162, 0.3);
color: white;
text-decoration: none;
}
.footer {
background: linear-gradient(135deg, #0c1426 0%, #1a1f2e 100%);
color: #a0aec0;
padding: 2rem 0;
text-align: center;
border-top: 1px solid rgba(102, 126, 234, 0.1);
margin-top: 2rem;
}
.container {
position: relative;
z-index: 1;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero .lead {
font-size: 1.1rem;
}
.feature-section {
padding: 3rem 0;
}
}
</style>
</head>
<body>
{% include 'navbar.html' %}
<section class="hero">
<div class="hero-overlay"></div>
<div class="container hero-content">
<h1 class="display-4">Welcome to Multus Bot</h1>
<h1 class="display-4">
<i class="fas fa-robot"></i> Welcome to Multus Bot
</h1>
<p class="lead">The AI-powered Discord bot that helps manage your server with advanced tools and intelligent automation.</p>
<a href="{{ url_for('login') }}" class="btn btn-primary btn-lg">Get Started</a>
<a href="{{ url_for('login') }}" class="hero-btn">
<i class="fas fa-rocket"></i> Get Started
</a>
</div>
</section>
<section class="feature-section">
<div class="container">
<div class="row text-center">
<div class="container">
<section class="feature-section">
<div class="row">
<div class="col-md-4">
<img src="https://source.unsplash.com/100x100/?automation,robot" alt="Automation" class="img-fluid mb-3">
<h3>Advanced AI Automation</h3>
<p>Multus Bot automates repetitive tasks and manages your server effortlessly, so you can focus on what matters most.</p>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-magic"></i>
</div>
<h3>Advanced AI Automation</h3>
<p>Multus Bot automates repetitive tasks and manages your server effortlessly, so you can focus on what matters most.</p>
</div>
</div>
<div class="col-md-4">
<img src="https://source.unsplash.com/100x100/?chat,bot" alt="Chat Assistance" class="img-fluid mb-3">
<h3>Smart Chat Assistance</h3>
<p>Using powerful AI, Multus Bot can assist with chat moderation, user queries, and provide useful information.</p>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-comments"></i>
</div>
<h3>Smart Chat Assistance</h3>
<p>Using powerful AI, Multus Bot can assist with chat moderation, user queries, and provide useful information.</p>
</div>
</div>
<div class="col-md-4">
<img src="https://source.unsplash.com/100x100/?data,analytics" alt="Server Analytics" class="img-fluid mb-3">
<h3>Detailed Server Insights</h3>
<p>Gain access to detailed analytics and user engagement metrics to keep your server thriving and well-managed.</p>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-chart-line"></i>
</div>
<h3>Detailed Server Insights</h3>
<p>Gain access to detailed analytics and user engagement metrics to keep your server thriving and well-managed.</p>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="bg-light py-5">
<div class="container">
<section class="info-section">
<div class="text-center">
<h2>Exclusively Available on Ludi et Historia</h2>
<h2><i class="fas fa-crown"></i> Exclusively Available on Ludi et Historia</h2>
<p class="lead">Currently, Multus Bot is available only for the <strong>Ludi et Historia</strong> Discord server. We are working to bring it to more communities soon.</p>
<p>If you're part of Ludi et Historia, start using Multus Bot now!</p>
<p style="color: #a0aec0;">If you're part of Ludi et Historia, start using Multus Bot now!</p>
</div>
</div>
</section>
</section>
<section class="bg-dark text-white py-5">
<div class="container text-center">
<h2>Need Assistance?</h2>
<p>For any help or questions, reach out to <strong>@simolzimol</strong> on Discord. We're here to help!</p>
<a href="https://discordapp.com/users/@simolzimol" class="btn btn-light">Contact SimolZimol</a>
</div>
</section>
<section class="contact-section">
<div class="text-center">
<h2><i class="fas fa-question-circle"></i> Need Assistance?</h2>
<p style="color: #a0aec0; margin-bottom: 2rem;">For any help or questions, reach out to <strong>@simolzimol</strong> on Discord. We're here to help!</p>
<a href="https://discordapp.com/users/@simolzimol" class="contact-btn">
<i class="fab fa-discord"></i> Contact SimolZimol
</a>
</div>
</section>
</div>
<footer class="footer">
<div class="container">
<p>&copy; 2024 Multus Bot | Built by SimolZimol | Exclusively on Ludi et Historia</p>
<p><i class="fas fa-code"></i> &copy; 2024 Multus Bot | Built by SimolZimol | Exclusively on Ludi et Historia</p>
</div>
</footer>