diff --git a/src/Elektrifikatsiya/Elektrifikatsiya/Pages/Admin.razor b/src/Elektrifikatsiya/Elektrifikatsiya/Pages/Admin.razor
index af079a3..d2df360 100644
--- a/src/Elektrifikatsiya/Elektrifikatsiya/Pages/Admin.razor
+++ b/src/Elektrifikatsiya/Elektrifikatsiya/Pages/Admin.razor
@@ -1,11 +1,11 @@
-@page "/admin"
-@using Blazorise.Components
+@page "/Admin"
+@using Blazorise.Components;
@using Elektrifikatsiya.Models;
@using System.Net
-
+
-
+
Users
-
-
-
+
+
+
+
+
+
+
+
+ @context.Item.Name
+
+
+
+
+ Name: @context.Item.Name
+
+ Rolle: @context.Item.Role
+
+
+
+
+
+
+
+
+
+
+
+ Delete User
+
+
+
+
+ Admin Password
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ User Settings
+
+
+
+
+
+
+ User Name
+
+
+ Here you can change the name of the User
+
+
+
+
+
+
+
+
+
+ Password
+
+
+ Here you can change the password of a User
+
+
+
+
+
+
+
+
+
+
+
+ Select Role
+
+
+ Here you select or change the role of to User or Admin
+
+
+
+ Roles
+
+ Admin
+
+ User
+
+
+
+
+
+
+
+
@code {
+ List users = new List() { new User("Silas", "aldjlfasd",Role.Admin), new User("Joe", "qiowruioewjfopa", Role.Admin), new User("Stefan", "adfadsdf", Role.Admin), new User("Manu", "öhöfldaösldf", Role.User)};
+
+ private Modal modalRef;
+
+ public Admin()
+ {
+ }
+
+ private Task ShowModal()
+ {
+ return modalRef.Show();
+ }
+
+ private Task HideModal() => modalRef.Hide();
+
}