Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="login.aspx.

vb"
Inherits="te.login" %>
<%@ Import Namespace="Ext.Net.Utilities" %>
<%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Login Page</title>
<script type="text/javascript" src="login.js"></script>

</head>
<body>
<ext:ResourceManager runat="server" Theme="Neptune" />
<form id="form1" runat="server">
<ext:Panel ID="pnlLogin" runat="server" Width="300" Height="200"
Layout="FormLayout">
<Items>
<ext:TextField ID="txtUsername" runat="server"
FieldLabel="Username" AllowBlank="false" />
<ext:TextField ID="txtPassword" runat="server"
FieldLabel="Password" InputType="Password" AllowBlank="false" />
</Items>
<Buttons>
<ext:Button ID="btnLogin" runat="server" Text="Login">
<Listeners>
<Click Handler="loginClick" />
</Listeners>
</ext:Button>
</Buttons>
</ext:Panel>
</form>
</body>
</html>

You might also like