wzp
2021-08-09 826bce65ac9b1e5dae43fc06974b8b1284f1d12c
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
<%@ Page Language="C#" masterpagefile="~/Main.master" AutoEventWireup="true" CodeFile="Pass.aspx.cs" Inherits="_Pass" %>
 
<asp:Content runat="server" ID="Content1" ContentPlaceHolderID="head">
<script type="text/javascript">
    $(function () {
        $("#passwordForm").ajaxForm({ success: function (r) {
            mytek.alert(r.Message, r.OK);
        }});
    });
</script>
</asp:Content>
<asp:Content runat="server" ID="Content2" ContentPlaceHolderID="content">
    <form method="post" action="session.ashx?action=changePassword" name="passwordForm" id="passwordForm"  class="form-horizontal">
    <div class="ibox">
        <div class="ibox-title"><h3>修改密码</h3></div>
        <div class="ibox-content">
            <div class="form-group">
                <label for="oldpassword">
                    旧密码</label>
                <input type="password" class="form-control" type="password" name="oldpassword" 
                    value="" />
            </div>
            <div class="form-group">
                <label for="password1">
                    新密码</label>
                <input class="form-control" type="password" name="password1" value="" />
            </div>
            <div class="form-group">
                <label for="password2">
                    确认密码</label>
                <input  class="form-control" type="password" name="password2" value="" />
            </div>
            <div class="form-group">
                <div class="input-group m-b">
                    <input type="submit" value="更改密码" class="btn btn-primary action-query" />
                </div>
            </div>
        </div>
    </div>
    </form>
</asp:Content>