Settings Page erstellt

This commit is contained in:
Daniel Habenicht
2025-06-20 14:09:56 +02:00
parent 8bf1df3ba4
commit 3d496970ac
8 changed files with 67 additions and 10 deletions

View File

@@ -16,7 +16,7 @@
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
@foreach (var s in Model.Servers)
{
<div class="bg-white rounded-xl shadow p-5 border border-gray-200 flex flex-col gap-4">
<div class="bg-blue rounded-xl shadow p-5 border border-gray-200 flex flex-col gap-4">
<div class="flex justify-between items-center">
<h2 class="text-lg font-semibold text-gray-800">
<i class="bi bi-cpu me-1 text-gray-600"></i>(#@s.Id) @s.Name
@@ -133,5 +133,4 @@
}
});
</script>
}
}