hanhwa_nexacro/client/nexacro-src/forms/frmLogin.xfdl

53 lines
1.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<FDL version="2.0">
<Form id="frmLogin" titletext="로그인" width="1440" height="900" onload="this.form_onload();">
<Objects>
<Dataset id="dsLogin">
<ColumnInfo>
<Column id="username" type="STRING" size="256"/>
<Column id="password" type="STRING" size="256"/>
</ColumnInfo>
</Dataset>
</Objects>
<Layouts>
<Layout id="default" width="1440" height="900"/>
</Layouts>
<Script><![CDATA[
this.gfnApiBase = function()
{
return application.g_apiBase || "/api";
};
this.gfnBuildTransactionUrl = function(path)
{
return this.gfnApiBase() + path;
};
this.gfnShowMessage = function(message)
{
trace(message);
};
this.form_onload = function()
{
this.gfnShowMessage("로그인 loaded");
};
this.actLogin = function()
{
this.gfnShowMessage("로그인");
};
]]></Script>
<Static id="staTitle" left="88" top="72" width="460" height="64" text="Hanwha Nexacro Demo"/>
<Static id="staSubtitle" left="88" top="148" width="460" height="28" text="업로드/검증 중심 재무 통합 데모"/>
<Edit id="edtUsername" left="88" top="248" width="320" height="44" displaynulltext="사용자 ID" value="bind:username"/>
<Edit id="edtPassword" left="88" top="308" width="320" height="44" displaynulltext="비밀번호" value="bind:password" password="true"/>
<Button id="btnLogin" left="88" top="376" width="320" height="48" text="로그인"/>
</Form>
</FDL>