modified: templates/admin_giveaways.html
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
This commit is contained in:
271
templates/footer.html
Normal file
271
templates/footer.html
Normal file
@@ -0,0 +1,271 @@
|
||||
<!-- Footer Component -->
|
||||
<footer class="site-footer mt-5">
|
||||
<div class="container-fluid">
|
||||
<div class="footer-content">
|
||||
<div class="row">
|
||||
<!-- About Section -->
|
||||
<div class="col-lg-3 col-md-6 mb-4">
|
||||
<h5 class="footer-title">
|
||||
<i class="fas fa-robot"></i> Multus Bot
|
||||
</h5>
|
||||
<p class="footer-text">
|
||||
Advanced Discord moderation and management bot with comprehensive warning systems,
|
||||
automated moderation, and interactive web panels.
|
||||
</p>
|
||||
<div class="footer-social">
|
||||
<a href="#" class="social-link" title="Discord">
|
||||
<i class="fab fa-discord"></i>
|
||||
</a>
|
||||
<a href="#" class="social-link" title="GitHub">
|
||||
<i class="fab fa-github"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Quick Links -->
|
||||
<div class="col-lg-3 col-md-6 mb-4">
|
||||
<h5 class="footer-title">
|
||||
<i class="fas fa-link"></i> Quick Links
|
||||
</h5>
|
||||
<ul class="footer-links">
|
||||
<li><a href="{{ url_for('user_landing_page') }}"><i class="fas fa-home"></i> Dashboard</a></li>
|
||||
<li><a href="{{ url_for('about') }}"><i class="fas fa-info-circle"></i> About</a></li>
|
||||
<li><a href="{{ url_for('faq') }}"><i class="fas fa-question-circle"></i> FAQ</a></li>
|
||||
<li><a href="{{ url_for('help') }}"><i class="fas fa-life-ring"></i> Help & Support</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Features -->
|
||||
<div class="col-lg-3 col-md-6 mb-4">
|
||||
<h5 class="footer-title">
|
||||
<i class="fas fa-star"></i> Features
|
||||
</h5>
|
||||
<ul class="footer-links">
|
||||
<li><a href="#"><i class="fas fa-shield-alt"></i> Warning System</a></li>
|
||||
<li><a href="#"><i class="fas fa-volume-mute"></i> Auto Moderation</a></li>
|
||||
<li><a href="#"><i class="fas fa-gift"></i> Giveaway Manager</a></li>
|
||||
<li><a href="#"><i class="fas fa-chart-line"></i> Analytics</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Contact & Legal -->
|
||||
<div class="col-lg-3 col-md-6 mb-4">
|
||||
<h5 class="footer-title">
|
||||
<i class="fas fa-envelope"></i> Support
|
||||
</h5>
|
||||
<ul class="footer-links">
|
||||
<li><a href="{{ url_for('contact') }}"><i class="fas fa-envelope"></i> Contact Us</a></li>
|
||||
<li><a href="#"><i class="fas fa-file-contract"></i> Terms of Service</a></li>
|
||||
<li><a href="#"><i class="fas fa-user-shield"></i> Privacy Policy</a></li>
|
||||
<li><a href="#"><i class="fas fa-bug"></i> Report Issue</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Footer Bottom -->
|
||||
<div class="footer-bottom">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-6">
|
||||
<p class="footer-copyright">
|
||||
© {{ current_year or 2024 }} Multus Bot. All rights reserved.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-6 text-md-right">
|
||||
<p class="footer-version">
|
||||
<i class="fas fa-code-branch"></i> Version 2.1.0
|
||||
<span class="text-muted">| Last updated: {{ last_updated or 'December 2024' }}</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<style>
|
||||
.site-footer {
|
||||
background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
|
||||
color: #e2e8f0;
|
||||
padding: 3rem 0 1rem 0;
|
||||
margin-top: auto;
|
||||
border-top: 1px solid rgba(148, 163, 184, 0.2);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.site-footer::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.footer-title {
|
||||
color: #f8fafc;
|
||||
font-weight: 600;
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.footer-title i {
|
||||
color: #3b82f6;
|
||||
}
|
||||
|
||||
.footer-text {
|
||||
color: #94a3b8;
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.footer-links li {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.footer-links a {
|
||||
color: #94a3b8;
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.footer-links a:hover {
|
||||
color: #3b82f6;
|
||||
text-decoration: none;
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.footer-links a i {
|
||||
width: 16px;
|
||||
text-align: center;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.footer-social {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.social-link {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: rgba(59, 130, 246, 0.1);
|
||||
border: 1px solid rgba(59, 130, 246, 0.2);
|
||||
border-radius: 50%;
|
||||
color: #3b82f6;
|
||||
font-size: 1.2rem;
|
||||
transition: all 0.3s ease;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.social-link:hover {
|
||||
background: rgba(59, 130, 246, 0.2);
|
||||
border-color: rgba(59, 130, 246, 0.4);
|
||||
color: #60a5fa;
|
||||
transform: translateY(-2px);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
margin-top: 2rem;
|
||||
padding-top: 1.5rem;
|
||||
border-top: 1px solid rgba(148, 163, 184, 0.1);
|
||||
}
|
||||
|
||||
.footer-copyright,
|
||||
.footer-version {
|
||||
margin: 0;
|
||||
font-size: 0.85rem;
|
||||
color: #64748b;
|
||||
}
|
||||
|
||||
.footer-version {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.footer-version i {
|
||||
color: #3b82f6;
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.site-footer {
|
||||
padding: 2rem 0 1rem 0;
|
||||
}
|
||||
|
||||
.footer-title {
|
||||
font-size: 1rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.footer-text,
|
||||
.footer-links a {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.footer-social {
|
||||
justify-content: center;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.footer-version {
|
||||
justify-content: center;
|
||||
margin-top: 1rem;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.footer-copyright {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
/* Dark mode compatibility */
|
||||
body.dark-mode .site-footer {
|
||||
background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d2d2d 100%);
|
||||
}
|
||||
|
||||
/* Animation for footer appearance */
|
||||
.site-footer {
|
||||
animation: fadeInUp 0.6s ease-out;
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user