RoadFlow2.1 临时演示

EditPass.aspx 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="EditPass.aspx.cs" Inherits="WebForm.Platform.UserInfo.EditPass" %>
  2. <!DOCTYPE html>
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6. <title></title>
  7. <style type="text/css">
  8. body { overflow:hidden;}
  9. </style>
  10. </head>
  11. <body>
  12. <form id="form1" runat="server">
  13. <br />
  14. <table cellpadding="0" cellspacing="1" border="0" width="99%" class="formtable">
  15. <tr>
  16. <th style="width: 100px;">
  17. 旧密码:
  18. </th>
  19. <td>
  20. <input type="password" name="oldpass" id="oldpass" class="mytext" value="" validate="empty" style="width: 55%" />
  21. </td>
  22. </tr>
  23. <tr>
  24. <th>
  25. 新密码:
  26. </th>
  27. <td>
  28. <input type="password" name="newpass" id="newpass" class="mytext" value="" validate="empty" style="width: 55%"/>
  29. </td>
  30. </tr>
  31. <tr>
  32. <th>
  33. 确认新密码:
  34. </th>
  35. <td>
  36. <input type="password" name="newpass1" id="newpass1" class="mytext" value="" validate="equal" validate_equalfor="newpass" errmsg="与新密码输入不一致" style="width: 55%"/>
  37. </td>
  38. </tr>
  39. </table>
  40. <div class="buttondiv">
  41. <input type="submit" value="确定保存" class="mybutton" onclick="return new RoadUI.Validate().validateForm(document.forms[0]);" />
  42. <input type="button" class="mybutton" value="取消关闭" style="margin-left: 5px;" onclick="new RoadUI.Window().close();" />
  43. </div>
  44. </form>
  45. </body>
  46. </html>