51 lines
1.5 KiB
XML
51 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FDL version="2.1">
|
|
<Form id="frmLogin" titletext="로그인" width="1440" height="900" onload="Form_onload">
|
|
<Objects>
|
|
<Dataset id="dsLogin">
|
|
<ColumnInfo>
|
|
<Column id="username" type="STRING" size="256"/>
|
|
<Column id="password" type="STRING" size="256"/>
|
|
</ColumnInfo>
|
|
</Dataset>
|
|
</Objects>
|
|
<Script type="xscript5.1"><![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(obj, e)
|
|
{
|
|
this.gfnShowMessage("로그인 loaded");
|
|
};
|
|
|
|
|
|
|
|
this.actLogin = function(obj, e)
|
|
{
|
|
this.gfnShowMessage("로그인");
|
|
};
|
|
]]></Script>
|
|
<Static id="staTitle" taborder="0" left="88" top="72" width="460" height="64" text="Hanwha Nexacro Demo"/>
|
|
<Static id="staSubtitle" taborder="1" left="88" top="148" width="460" height="28" text="업로드/검증 중심 재무 통합 데모"/>
|
|
<Edit id="edtUsername" taborder="2" left="88" top="248" width="320" height="44" displaynulltext="사용자 ID" value="bind:username"/>
|
|
<Edit id="edtPassword" taborder="3" left="88" top="308" width="320" height="44" displaynulltext="비밀번호" value="bind:password" password="true"/>
|
|
<Button id="btnLogin" taborder="4" left="88" top="376" width="320" height="48" text="로그인"/>
|
|
|
|
<Layouts>
|
|
<Layout width="1440" height="900" screenid="Desktop_screen"/>
|
|
</Layouts>
|
|
</Form>
|
|
</FDL>
|