You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
3.1 KiB
61 lines
3.1 KiB
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default1.aspx.cs" Inherits="SCP.Default1" %>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<f:PageManager ID="PageManager1" runat="server"></f:PageManager>
|
|
<f:Window ID="Window1" runat="server" IsModal="true" Hidden="false" EnableClose="false"
|
|
EnableMaximize="false" WindowPosition="GoldenSection" Icon="Key" Title="系统登陆"
|
|
Layout="HBox" BoxConfigAlign="Stretch" BoxConfigPosition="Start" Width="500px">
|
|
<Items>
|
|
<f:Image ID="imageLogin" ImageUrl="~/res/images/login/login_2.png" runat="server"
|
|
CssClass="login-image">
|
|
</f:Image>
|
|
<f:SimpleForm ID="SimpleForm1" LabelAlign="Top" BoxFlex="1" runat="server"
|
|
BodyPadding="30px 20px" ShowBorder="false" ShowHeader="false">
|
|
<Items>
|
|
<f:TextBox ID="tbxUserName" FocusOnPageLoad="true" runat="server" Label="帐号" Required="true"
|
|
ShowRedStar="true" Text="">
|
|
</f:TextBox>
|
|
<f:TextBox ID="tbxPassword" TextMode="Password" runat="server" Required="true" ShowRedStar="true"
|
|
Label="密码" Text=""/>
|
|
<f:DropDownList Hidden="true" ID="DDL_LANGUAGE" Label="语 言" runat="server" Required="true" ShowRedStar="true" OnSelectedIndexChanged="DDL_LANGUAGE_SelectedIndexChanged">
|
|
<f:ListItem Text="中文" Selected="true" Value="CH"/>
|
|
<f:ListItem Text="English" Value="EN" />
|
|
<f:ListItem Text="Deutsch" Value="DE"/>
|
|
<f:ListItem Text="日本語" Value="JP" />
|
|
<f:ListItem Text="Français" Value="FR" />
|
|
</f:DropDownList>
|
|
|
|
|
|
<%-- <f:FormRow ID="FormRow2" runat="server">
|
|
<Items>
|
|
<f:NumberBox runat="server" ID="TXT_VerifyCode"></f:NumberBox>
|
|
<f:Image ImageUrl="Handlers/MakeVerifyCode.ashx" runat="server"></f:Image>
|
|
</Items>
|
|
</f:FormRow>--%>
|
|
|
|
</Items>
|
|
</f:SimpleForm>
|
|
|
|
</Items>
|
|
<Toolbars>
|
|
<f:Toolbar runat="server" Position="Bottom" ToolbarAlign="Right">
|
|
<Items>
|
|
<f:Button ID="btnSubmit" Icon="LockOpen" Type="Submit" runat="server" ValidateForms="SimpleForm1"
|
|
OnClick="btnSubmit_Click" Text="登陆">
|
|
</f:Button>
|
|
</Items>
|
|
</f:Toolbar>
|
|
</Toolbars>
|
|
</f:Window>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|
|
|