added a login page
This commit is contained in:
24
FWA_MAIN/login.aspx
Normal file
24
FWA_MAIN/login.aspx
Normal file
@@ -0,0 +1,24 @@
|
||||
<%@ Page Language="C#" CodeBehind="login.aspx.cs" Inherits="FWA_MAIN.login" %>
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<script runat="server">
|
||||
|
||||
</script>
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head runat="server">
|
||||
<title>Login</title>
|
||||
</head>
|
||||
<body style="background-color: #0f0f0f">
|
||||
<form id="Login" runat="server">
|
||||
<div style="horiz-align: center; width: 100%">
|
||||
<label for="Username" style="color: white">Username:</label>
|
||||
<asp:TextBox ID="Username" runat="server"></asp:TextBox><br/>
|
||||
<label for="Password" style="color: white">Password:</label>
|
||||
<asp:TextBox ID="Password" runat="server" TextMode="Password"></asp:TextBox><br/>
|
||||
<asp:Button ID="LoginButton" runat="server" Text="Login" OnClick="LoginButton_Click" />
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user