123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.css" ?>
- <xhtml:html xmlns:ex="http://www.comsquare.co.kr/xforms/excel" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:my="http://www.comsquare.co.kr/example" xmlns:ms="urn:schemas-microsoft-com:xslt" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:cs="http://www.comsquare.co.kr/xforms">
- <xhtml:head>
- <xhtml:title>인증서 비밀번호 입력</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <example>Sample</example>
- <send>
- <rtndata>
- <pwd/>
- </rtndata>
- </send>
- </root>
- </instance>
- <script type="javascript">
- <![CDATA[
- var viewerObj = null;
-
- function fOnKeyPress(){
- var keyCode = 0;
- var shiftKey = false;
-
- keyCode = event.keyCode;
- shiftKey = event.shiftKey;
-
- if(!shiftKey && keyCode >=65 && keyCode <=90)
- cap_capslock.visible = true;
- else
- cap_capslock.visible = false;
-
- }
-
- function fPassConfirm() {
- var pwd = model.getValue("/root/send/rtndata/pwd");
-
- if (pwd == null || pwd == "") {
- messageBox("비밀번호가 입력되지 않았습니다!","I");
- return false;
- }
- if (fCommonCheckPassword(pwd,false) == false){
- if ("6" == messageBox("규칙에 맞지 않는 비빌번호입니다 \n 인증비밀번호 변경하시겠습니까?","Q999")) {
- btn_passchng.dispatch("DOMActivate");
- }
- return false;
-
- }
-
- return true;
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- body.attribute("onkeypress") = "fOnKeyPress();";
-
- viewerObj = getViewer("sysMessage");
-
- ]]>
- </script>
- </model>
- </xhtml:head>
- <script src="../../../com/commonweb/js/common.js" type="javascript"/>
- <script src="../../../com/commonweb/js/utilHelper.js" type="javascript"/>
- <script src="../../../com/commonweb/js/tfHelper.js" type="javascript"/>
- <script src="../../../com/commonweb/js/stringHelper.js" type="javascript"/>
- <script src="../../../com/commonweb/js/dateHelper.js" type="javascript"/>
- <script type="javascript" src="../../../com/hismainweb/js/ZUM008.js"/>
- <xhtml:body pagewidth="350" pageheight="170">
- <group id="group1" style="left:10px; top:35px; width:295px; height:115px; ">
- <shape id="roundrect5" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:290px; height:110px; background-color:#fffbf2; border-color:#ffd799; "/>
- <caption id="caption75" class="tit_2" style="left:0px; top:5px; width:243px; height:15px; ">인증서 비밀번호 입력</caption>
- <secret id="src_pwd" ref="/root/send/rtndata/pwd" class="secret_essential" navindex="10" imemode="disabled" maxlength="20" style="left:120px; top:36px; width:135px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == 13){
- model.setFocus("btn_confirm");
- btn_confirm.dispatch("DOMActivate");
- }
- ]]>
- </script>
- </secret>
- <caption id="caption76" class="cell_1" style="left:5px; top:35px; width:110px; height:23px; ">인증서 비밀번호</caption>
- <button id="btn_confirm" class="btn4_letter2" navindex="20" style="left:215px; top:75px; width:56px; height:22px; ">
- <caption>확인</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- setForceOn();
- if (fPassConfirm()) {
- viewerObj.window.model.makeValue("/root/main/pwdhidden/pwd", model.getValue("/root/send/rtndata/pwd"));
- window.close();
- }
- ]]>
- </script>
- </button>
- <button id="btn_passchng" class="btn2_letter6" style="left:195px; top:5px; width:86px; height:19px; ">
- <caption>비밀번호변경</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- setParameter("SPZUM01100_param_flag","5");
- open("SPZUM01100");
- ]]>
- </script>
- </button>
- </group>
- <caption id="cap_capslock" visibility="hidden" style="left:10px; top:5px; width:250px; height:20px; font-weight:bold; color:#ff0000; ">[CapsLock키가 눌려있습니다.]</caption>
- <caption id="caption23" style="left:15px; top:105px; width:145px; height:20px; ">-문의처:의무기록팀</caption>
- <caption id="caption24" style="left:15px; top:122px; width:145px; height:20px; ">(본원:5322,칠곡:2402)</caption>
- </xhtml:body>
- </xhtml:html>
|