You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.7 KiB
Plaintext
78 lines
3.7 KiB
Plaintext
2 years ago
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ChangePassWord.aspx.cs" Inherits="DSWeb.Accounts.ChangePassWord" %>
|
||
|
|
||
|
<!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" >
|
||
|
<head runat="server">
|
||
|
<title>更改密码</title>
|
||
|
<style type="text/css">
|
||
|
html,body{font-size:12px;margin:0px;height:100%;}
|
||
|
.txtTab{border:1px solid #A0A0A4; border-color:#6699CC;padding: 3px 0 0 3px;}
|
||
|
.btn{
|
||
|
width:95px;
|
||
|
BORDER-RIGHT: #2C59AA 1px solid;
|
||
|
PADDING-RIGHT: 2px; BORDER-TOP: #2C59AA 1px solid;
|
||
|
PADDING-LEFT: 2px; FONT-SIZE: 12px; FILTER: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#ffffff, EndColorStr=#C3DAF5);
|
||
|
BORDER-LEFT: #2C59AA 1px solid; CURSOR: hand; COLOR: black; PADDING-TOP: 2px;
|
||
|
BORDER-BOTTOM: #2C59AA 1px solid
|
||
|
}
|
||
|
.main_form {
|
||
|
padding: 10px 0;
|
||
|
list-style: none;
|
||
|
}
|
||
|
.main_form li {
|
||
|
padding: 6px 0;
|
||
|
clear: left;
|
||
|
line-height: 200%;
|
||
|
}
|
||
|
.line
|
||
|
{
|
||
|
border-top:1px dashed #cccccc;
|
||
|
height: 1px;
|
||
|
overflow:hidden;
|
||
|
padding-top:5px;
|
||
|
padding-bottom:5px;
|
||
|
}
|
||
|
</style>
|
||
|
<link rel="stylesheet" type="text/css" href="../theme/progressbar.css" />
|
||
|
<script src="../js/dhtmlxcommon.js" type="text/javascript"></script>
|
||
|
<script src="../js/changepassword.js" type="text/javascript"></script>
|
||
|
</head>
|
||
|
<body style="background-color:#ecf2ff;">
|
||
|
<form id="form1" runat="server">
|
||
|
<div style="width:100%;height:100%;" oncontextmenu="return true">
|
||
|
<div style="width:80%;height:130px; margin-left:auto; margin-right:auto;">
|
||
|
<div style="width:100%;float:left; margin-top:20px; margin-bottom:10px;">
|
||
|
<div style=" margin-left:20px;">修改密码</div>
|
||
|
</div>
|
||
|
<div class="line" style="width:100%;text-align:center;"></div>
|
||
|
<div style="width:100%;float:left;">
|
||
|
<ul class="main_form">
|
||
|
<li>
|
||
|
<div style="width:80px;float:left;text-align:right;">原始密码:</div>
|
||
|
<div style="width:20%;float:left;"><input type="password" id="txt_origpwd" style="width:100%;" class="txtTab" runat="server" maxlength="8"/></div>
|
||
|
<div style="width:40%;float:left;text-align:left;display:none;padding-left:10px; color:#ff0000;" id="dvOrigNotice" runat="server"></div>
|
||
|
</li>
|
||
|
<li>
|
||
|
<div style="width:80px;float:left;text-align:right;">新密码:</div>
|
||
|
<div style="width:20%;float:left;"><input type="password" id="txt_newpwd" style="width:100%;" class="txtTab" runat="server" maxlength="8"/></div>
|
||
|
<div style="width:40%;float:left;text-align:left;display:none;padding-left:10px; color:#ff0000;" id="dvNewPwd" runat="server"></div>
|
||
|
</li>
|
||
|
<li>
|
||
|
<div style="width:80px;float:left;text-align:right;">重复输入:</div>
|
||
|
<div style="width:20%;float:left;"><input type="password" id="txt_comfirm" style="width:100%;" class="txtTab" runat="server" maxlength="8"/></div>
|
||
|
<div style="width:40%;float:left;text-align:left;display:none;padding-left:10px; color:#ff0000;" id="dvConfirm" runat="server"></div>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div style="width:80%;height:30px; margin-left:auto; margin-right:auto;background-color:#ecf2ff;">
|
||
|
<div style="width:100px;float:left; margin-left:80px;"><input type="button" id="btn_save" class="btn" value="保存" onclick="saveAction()"/></div>
|
||
|
<div style="width:100px;float:left; margin-left:10px;"><input type="button" id="btn_cancel" class="btn" value="取消"/></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<input type="hidden" id="h_post" runat="server" />
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|