<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>ACoManage</title>
<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.style1
{
text-align: right;
}
.style2
{
color: #C0C0C0;
font-style: italic;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<table style="width:100%;" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<h2 style="margin:0;">ACoManage</h2></td>
<td align="right" valign="bottom">
<asp:Panel ID="PanelCurrentUser" runat="server" Visible="False">
<i>Logged in as</i>
</asp:Panel>
</td>
</tr>
</table>
<hr />
<br />
<asp:Panel ID="PanelLogin" runat="server">
Please Log In.<br />
<table align="center">
<tr>
<td class="style1">
Username</td>
<td>
<asp:TextBox ID="InputUsername" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style1">
Password</td>
<td>
<asp:TextBox ID="InputPassword" runat="server" TextMode="Password"></asp:TextBox>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Button ID="SubmitUserPass" runat="server" onclick="SubmitUserPass_Click"
Text="Submit" />
</td>
</tr>
</table>
</asp:Panel>
<br />
<hr />
<span class="style2">Copyright 2008 ACoManage</span></form>
</body>
</html>