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.
68 lines
2.7 KiB
Plaintext
68 lines
2.7 KiB
Plaintext
9 months ago
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ForgetPassWord.aspx.cs" Inherits="DSWeb.Accounts.ForgetPassWord" %>
|
||
|
|
||
|
<!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>
|
||
|
<!--自定义下拉框-->
|
||
|
<link href="../theme/style.css" type="text/css" rel="Stylesheet" media="screen"/>
|
||
|
<script type="text/javascript">
|
||
|
function $(id)
|
||
|
{
|
||
|
return document.getElementById(id);
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form id="form1" runat="server">
|
||
|
<div align=center style="width:100%; height:100%;">
|
||
|
<table style="width:100%; height:100%;">
|
||
|
<tr>
|
||
|
<td style="font-weight: bold;color: #1E89BF;font-size: 16px;" colspan=4 class="cssfont" align=left><br />找回登录信息:</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan=4 align="center" height="10"><hr color="#96B3DD" /></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td height="10" colspan="4"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td></td>
|
||
|
<td align=right style="color: #1E89BF; font-size: 12px;" width=100px><asp:Label ID="Label1" runat="server" Text="请输入公司全称:" width=100px></asp:Label></td>
|
||
|
<td align=left>
|
||
|
<asp:TextBox ID="tbDESCRIPTION" runat="server" Width=200px
|
||
|
style="background:url(../Images/login_6.gif) repeat-x; border:solid 1px #6699CC; height:18px; background-color:#FFFFFF"
|
||
|
size="12" MaxLength=50></asp:TextBox>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td height="20" colspan="4"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td></td>
|
||
|
<td colspan="2" align="center" valign=bottom>
|
||
|
<asp:Button ID="Button1" runat="server" Text="提交" onclick="Button1_Click" />
|
||
|
</td>
|
||
|
<td></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td height="30" colspan="4"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td height="30" colspan="4" align=left>
|
||
|
<asp:Label ID="lbREMARK" runat="server" Text=""></asp:Label>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
<div>
|
||
|
<input id="hdSender" type="hidden" runat=server />
|
||
|
<input id="hdPassWord" type="hidden" runat=server />
|
||
|
<input id="hdTitle" type="hidden" runat=server />
|
||
|
<input id="hdMailServe" type="hidden" runat=server />
|
||
|
</div>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|