Administrator
2022-12-15 9ce4bb2b6bd1378ba7b0bd6681d22cb37a5e1452
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets">
<ui:composition template="/template/nit/tmp_brief.xhtml">
    <ui:define name="acss">
        <style>
            #sysDepart {
                padding-left: 17px;
                border: none;
                cursor: default;
            }
        </style>
    </ui:define>
    <ui:define name="acontent">
        <div class="row main-content">
        <div class="col-md-12 com-sm-12">
        <form class="form-horizontal" id="fm1">
        <div class="form-group">
          <label for="description" class="col-sm-2 control-label">旧密码</label>
          <div class="col-sm-8">
              <input type="password" class="form-control" id="opwd" name="opwd" placeholder="旧密码" data-bind="value:opwd"/>
          </div>
        </div>
        <div class="form-group">
          <label for="description" class="col-sm-2 control-label">新密码</label>
          <div class="col-sm-8">
              <input type="password" class="form-control" id="npwd" name="npwd" placeholder="新密码" data-bind="value:npwd"/>
          </div>
        </div>
        <div class="form-group">
          <label for="description" class="col-sm-2 control-label">新密码确认</label>
          <div class="col-sm-8">
              <input type="password" class="form-control" id="rnpwd" name="rnpwd" placeholder="新密码确认" data-bind="value:rnpwd"/>
          </div>
        </div>
        <div class="form-group">
          <div class="col-md-3"></div>
          <div class="col-sm-8">
              <a href="javascript:;" id="tjbtn" class="btn primary-btn">保存</a>
          </div>
        </div>
        </form>
        </div>
      </div>
    </ui:define>
    <ui:define name="myscript">
        <script type="text/javascript" src="#{request.contextPath}/template/assets/js/chosen.jquery.js"></script>
        <script type="text/javascript" src="#{request.contextPath}/system/js/changepwd.js"></script>
    </ui:define>
</ui:composition>
</html>