Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.0 KiB

  1. <HTML>
  2. <HEAD>
  3. <META content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
  4. <META http-equiv="MSThemeCompatible" content="Yes">
  5. <LINK id=idCSS rel="stylesheet" type="text/css" href="nusrmgr.css">
  6. <LINK id=idTheme rel="stylesheet" type="text/css" href="classic.css">
  7. <SCRIPT language="JavaScript" src="chg_common.js" defer id=idSharedChangeScript></SCRIPT>
  8. <SCRIPT language="JavaScript" defer>
  9. function PageInit()
  10. {
  11. top.window.PopulateLeftPane(idRelatedTaskContent.innerHTML,idLearnAboutContent.innerHTML);
  12. CreateUserSelectionTable(idUserList,2);
  13. window.focus();
  14. }
  15. function OnUnload()
  16. {
  17. // The user references held by the table cells are
  18. // not released automatically
  19. var aUsers = idUserList.firstChild.cells;
  20. var cUsers = aUsers.length;
  21. for (i = 0; i < cUsers; i++)
  22. {
  23. aUsers[i].oUser = null;
  24. }
  25. }
  26. function OnKeyDown()
  27. {
  28. if (event.keyCode == 27) // VK_ESCAPE
  29. top.window.g_Navigator.back();
  30. }
  31. </SCRIPT>
  32. </HEAD>
  33. <BODY class=Page1 tabindex=-1 scroll=no onload='PageInit();' onUnload='OnUnload();' onkeydown='OnKeyDown();'>
  34. <DIV class=WorkArea>
  35. <H1 id=idPageTitle>
  36. Pick an account to change
  37. </H1>
  38. <DIV id=idUserList></DIV>
  39. </DIV>
  40. <!-- Localizable content not displayed in this pane. -->
  41. <DIV style="display:none">
  42. <DIV id=idRelatedTaskContent>
  43. <DIV id=idCreateNew onclick="g_Navigator.navigate('CreatePage.htm'); return false;" onkeydown="OnKeySelect(2);">
  44. <A href="" tabIndex=-1>Create a new account</A>
  45. </DIV>
  46. </DIV>
  47. <DIV id=idLearnAboutContent>
  48. <TABLE onclick="LaunchHelp('HelpWindowsAccounts.htm'); return false;" onkeydown="OnKeySelect(2);">
  49. <TR>
  50. <TD><IMG id=uaImg1 src="helpdoc.ico"/></TD>
  51. <TD id=uaLink1><A href="" tabIndex=-1>User accounts</A></TD>
  52. </TR>
  53. </TABLE>
  54. </DIV>
  55. </DIV>
  56. </BODY>
  57. </HTML>