| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet type="text/css" href="../../css/body.css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" 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">
- <xhtml:head>
- <xhtml:title>Untitle</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <initData>
- <rcvInfo/>
- </initData>
- <formData>
- <searchInfo>
- <USER_PW/>
- <rowStatus>u</rowStatus>
- </searchInfo>
- <searchInfo2>
- <USER_PW/>
- </searchInfo2>
- <USER_PW/>
- </formData>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- exec();
- model.duplicate("/root/formData/searchInfo", "/root/initData/rcvInfo/REG_ID");
- model.duplicate("/root/formData/searchInfo2", "/root/initData/rcvInfo/REG_ID");
- ]]>
- </script>
- </model>
- <script type="javascript" src="../../js/boaCommon.js"/>
- <script type="javascript" src="../../js/boaMsg.js"/>
- <script type="javascript" src="../../js/mesCommon.js"/>
- <script type="javascript">
- <![CDATA[
- submitID = "password-service";
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body overflow="hidden" pagewidth="300" pageheight="200" style="font-family:宋体; ">
- <caption id="caption1" style="left:80px; top:45px; width:40px; height:20px; color:#ff0000; ">原口令</caption>
- <caption id="caption2" style="left:80px; top:70px; width:40px; height:20px; color:#ff0000; ">新口令</caption>
- <caption id="caption3" style="left:80px; top:95px; width:40px; height:20px; color:#ff0000; ">新口令</caption>
- <secret id="secret1" ref="/root/formData/searchInfo2/USER_PW" imemode="disabled" style="left:130px; top:45px; width:100px; height:17px; "/>
- <secret id="secret2" ref="/root/formData/searchInfo/USER_PW" imemode="disabled" style="left:130px; top:70px; width:100px; height:17px; "/>
- <secret id="secret3" ref="/root/formData/USER_PW" imemode="disabled" style="left:130px; top:95px; width:100px; height:17px; "/>
- <button id="button1" style="left:80px; top:130px; width:85px; height:20px; background-image:../../images/btn_exit.GIF; ">
- <caption>取消</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- window.close();
- ]]>
- </script>
- </button>
- <button id="button2" style="left:160px; top:130px; width:85px; height:20px; background-image:../../images/btn_find.GIF; ">
- <caption>确定</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if (model.getValue("/root/formData/searchInfo/USER_PW") == model.getValue("/root/formData/USER_PW")) {
- exec("/root/formData/searchInfo2", "", "find");
- if (model.getValue("/root/resData/ListResult_0_VO/ListResult_0_Row/USER_CD") != "") {
- exec("/root/formData/searchInfo", "", "save");
- alert("口令已更改成攻,请记住新口令!");
- window.close();
- } else alert("原口令错误!");
- } else alert("两次输入的新口令不同!");
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|