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
71 lines
2.5 KiB
HTML
71 lines
2.5 KiB
HTML
<style>
|
|
.navbar-dark-custom {
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
|
backdrop-filter: blur(10px);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
font-size: 1.5rem;
|
|
color: #f8f9fa !important;
|
|
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.navbar-nav .nav-link {
|
|
color: #e0e0e0 !important;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
border-radius: 8px;
|
|
margin: 0 5px;
|
|
padding: 8px 16px !important;
|
|
}
|
|
|
|
.navbar-nav .nav-link:hover {
|
|
color: #ffffff !important;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.navbar-toggler {
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.navbar-toggler-icon {
|
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
|
|
}
|
|
</style>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark navbar-dark-custom">
|
|
<a class="navbar-brand" href="/">
|
|
<i class="fas fa-robot"></i> Multus Bot
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 ml-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ url_for('user_landing_page') }}">
|
|
<i class="fas fa-server"></i> Server Selection
|
|
</a>
|
|
</li>
|
|
<!-- Admin Link nur für Bot-Admins anzeigen -->
|
|
{% if g.is_admin %}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ url_for('global_admin_dashboard') }}">
|
|
<i class="fas fa-crown"></i> Admin Dashboard
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ url_for('logout') }}">
|
|
<i class="fas fa-sign-out-alt"></i> Logout
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|