Dashboard, Services, Server, Settings, Userinfo Page auf Darkmode umgebaut
This commit is contained in:
@@ -2,24 +2,32 @@
|
||||
@{
|
||||
ViewData["Title"] = "Serverübersicht";
|
||||
}
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="~/css/main.css" />
|
||||
<link rel="stylesheet" href="~/css/server-overview.css" />
|
||||
</head>
|
||||
|
||||
<div class="d-flex align-items-center justify-content-between mb-4">
|
||||
<h1 class="h2 fw-bold mb-0">
|
||||
<i class="bi bi-hdd-network me-2 text-primary"></i>Serverübersicht
|
||||
|
||||
<h1 class="mb-4"">
|
||||
<i class="bi bi-hdd-network"></i> Serverübersicht
|
||||
</h1>
|
||||
<form asp-action="AddServer" method="get" asp-controller="Server">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
<i class="bi"></i> neuen Server erstellen
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<a class="nav-link" href="/Server/addServer">
|
||||
<button class="btn btn-primary"> Server hnzufügen </button>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div id="server-cards-container">
|
||||
@await Html.PartialAsync("_ServerCard", Model.Servers)
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@section Scripts {
|
||||
<script>
|
||||
async function loadServerCards() {
|
||||
|
Reference in New Issue
Block a user