123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ModiPassword.aspx.cs" Inherits="ModiPassword" %>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head id="Head1" runat="server">
- <title>刘友生应用程序集之密码修改</title>
- <style>
- body{
- background-color:#022253;
-
- }
- #main{
- width:420px;
- height:320px;
- border:#06F 1px groove;
- margin:0 auto;
- margin-top:100px;
- border-radius:15px;
- box-shadow:#003 6px 6px;
- padding:10px;
- font-size:12px;
- background-color:#C9E2F1;
-
- }
- #title{
- background-image: url(images/touming.gif) ;
- background-color: #2864F0;
- border: #03C 1px dotted;
- border-radius: 8px;
- height: 80px;
- color: #FFF;
- padding: 3px;
- box-shadow: #859CAD 4px 4px;
- text-align: center;
- background-repeat: no-repeat;
- background-position: left;
- }
- h1{
- font-size:30px;
- font-family:"黑体";
- text-align:center;
- color:#FFF;
- text-shadow:#000 2px 2px 5px, #FFFFFF -1px -1px 8px,2px 2px 6px #000000;
- }
- #selectData{
- padding:5px;
- margin-top:8px;
- background-color:#72ACE7;
- height:210px;
- text-align:center;
- border:#FFF 1px dashed;
- box-shadow:#036 5px 5px;
- border-radius:10px;
- color:#FFF;
- }
- #info{
- padding:5px;
- margin-top:6px;
- border:#03C 1px dotted;
- border-radius:8px;
- text-align:center;
- color:#FFF;
- height:60px;
- background-color:#1443AF;
- border:#F00 1px thick;
- box-shadow:#859CAD 5px 5px;
- border-radius:10px;
- }
- table{
- margin:0 auto;
-
- }
- tr{
- font-size:14px;
- color:#FFF;
- text-align:center;
- font-family:"黑体";
-
- }
- td{
- margin:3px;
- border-bottom:#FC6 1px dotted;
- }
- .listmenu
- {
- width:260px;
- height:32px;
- font-size:14px;
- background-color:#72ACE7;
- color:#FFF;
- }
- .input{
- width:120px;
- height:32px;
- margin:0px 10px 0px 10px;
- color:#009;
- background-color:#86D0F9;
- border:#03F 1px dotted;
- border-radius:5px;
- box-shadow:3px 3px #999999;
- display:- webdit-box;
- }
- input:hover{
- font-size:14px;
- color:#FFF;
- font-family:"黑体";
- background-color:#4D9BE1;
- }
- #footer{
- width:420px;
- height:60px;
- border:#06F 1px groove;
- margin:0 auto;
- padding-top:15px;
- margin-top:30px;
- color:#CCC;
- text-align:center;
- border-radius:15px;
- }
- a{
- color:#CCC;
- }
- </style>
-
- </head>
- <body>
- <form id="form1" runat="server">
- <div id="main">
- <div id="title"> <h1>修改登录密码</h1></div>
- <div id="selectData">
- <table width="90%" height="198" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="30%">登录用户名</td>
- <td width="70%"> <asp:TextBox ID="UserName" class="input"
- style="width:235px;padding-left:15px; " runat="server"></asp:TextBox>
- </td>
- </tr>
- <tr>
- <td>登录密码</td>
- <td> <asp:TextBox ID="PassWord" class="input"
- style="width:235px;padding-left:15px; " runat="server"></asp:TextBox> </td>
- </tr>
- <tr>
- <td>新密码</td>
- <td>
- <asp:TextBox ID="NewPassWord" class="input"
- style="width:235px;padding-left:15px; " runat="server"></asp:TextBox>
-
- </td>
- </tr>
- <tr>
- <td>重输新密码</td>
- <td>
- <asp:TextBox ID="ReNewPassWord" class="input"
- style="width:235px;padding-left:15px; " runat="server"></asp:TextBox> </td>
- </tr>
- <tr>
- <td colspan="2">
- <asp:Button ID="Button1" runat="server" Text="修改密码" class="input"
- onclick="Button1_Click" />
- </td>
- </tr>
- </table>
- </div>
- <div id="footer"> Copyright © <a href="mailto:290578102.qq.com">踏雪工作室</a> <br />
- <p>版权所有 © 2013 广东松山职业技术学院计算机系 刘友生 </div>
- </div>
- </form>
- </body>
- </html>
|