CNSA-216-FP/FWA_MAIN/loginv2.aspx.cs

29 lines
744 B
C#
Raw Normal View History

2024-04-03 21:50:40 -07:00
using System;
using System.Web.Security;
using System.Web.UI;
namespace FWA_MAIN
{
public partial class loginv2 : 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;
// Example authentication; replace with actual logic
if (username == "admin" && password == "password")
{
FormsAuthentication.RedirectFromLoginPage(username, false);
}
else
{
// Show an error message or handle invalid login
} }
}
}