CNSA-216-FP/FWA_MAIN/login.aspx.cs
2024-04-04 10:15:57 -04:00

27 lines
672 B
C#

using System;
using System.Web.Security;
using System.Web.UI;
namespace FWA_MAIN
{
public partial class login : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void LoginButton_Click(object sender, EventArgs e)
{
string username = Username.Text;
string password = Password.Text;
// 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);
}
}
}
}