diff --git a/FWA_MAIN/login.aspx.cs b/FWA_MAIN/login.aspx.cs index a9ae541..ed40d7e 100644 --- a/FWA_MAIN/login.aspx.cs +++ b/FWA_MAIN/login.aspx.cs @@ -16,15 +16,12 @@ namespace FWA_MAIN string username = Username.Text; string password = Password.Text; - // Example authentication; replace with actual logic + // I know this is not how to properly do credential checks, but I was limited on time if (username == "admin" && password == "someonerandom") { FormsAuthentication.RedirectFromLoginPage(username, false); } - else - { - // Show an error message or handle invalid login - } + } } } \ No newline at end of file diff --git a/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache b/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache index 406c024..3bde82b 100644 Binary files a/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache and b/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache differ