Source code of Windows XP (NT5)
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.

114 lines
3.6 KiB

  1. <HTML>
  2. <HEAD>
  3. <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  4. <META http-equiv="MSThemeCompatible" content="Yes">
  5. <TITLE>User Accounts</TITLE>
  6. <LINK id=idCSS rel="stylesheet" type="text/css" href="nusrmgr.css">
  7. <LINK id=idTheme rel="stylesheet" type="text/css" href="classic.css">
  8. <STYLE id=idStyle type="text/css">
  9. #idLeftPaneContent { padding:3mm; overflow-y:auto; }
  10. .LearnAboutBody DIV { margin-top:1mm; }
  11. .LearnAboutBody TABLE { cursor:hand; }
  12. .LearnAboutBody TD { vertical-align:middle; }
  13. .LearnAboutBody IMG { margin-right:1mm; }
  14. </STYLE>
  15. <SCRIPT language="JavaScript">
  16. // Set the initial size of the window. This must come before
  17. // the HTA:APPLICATION tag, otherwise we'd see the window resize
  18. var cxWidth = Math.min(730, screen.availWidth);
  19. var cyHeight = Math.min(530, screen.availHeight);
  20. window.resizeTo(cxWidth, cyHeight);
  21. window.moveTo((screen.availWidth - cxWidth) / 2, (screen.availHeight - cyHeight) / 4);
  22. </SCRIPT>
  23. <HTA:APPLICATION
  24. id=idUM
  25. applicationName="User Account Manager"
  26. contextMenu=no
  27. icon=users.ico
  28. scroll=no
  29. scrollFlat=yes
  30. selection=no
  31. singleInstance=yes
  32. version=1.0
  33. innerBorder=on
  34. />
  35. <SCRIPT id=idStrings language="JavaScript" src="localtext.js" defer></SCRIPT>
  36. <SCRIPT id=idMainScript language="JavaScript" src="nusrmgr.js" defer></SCRIPT>
  37. <SCRIPT language="JavaScript" src="popup.js" defer></SCRIPT>
  38. </HEAD>
  39. <BODY tabindex=-1 scroll=no onload="PageInit();">
  40. <!-- The main table -->
  41. <TABLE class=AllAvailableSpace cellspacing=0 cols=1 cellpadding=0>
  42. <!-- The Header -->
  43. <TR>
  44. <TD>
  45. <OBJECT id=idToolbar class=FullWidth style="font:menu;" CLASSID="CLSID:A5064426-D541-11D4-9523-00B0D022CA64"></OBJECT>
  46. <SCRIPT language="JavaScript" for="idToolbar" event="OnButtonClick(index)">
  47. switch (index)
  48. {
  49. case 0:
  50. g_Navigator.back();
  51. break;
  52. case 1:
  53. g_Navigator.forward();
  54. break;
  55. case 2:
  56. g_Navigator.back(-1);
  57. break;
  58. }
  59. </SCRIPT>
  60. </TD>
  61. </TR>
  62. <!-- Below the Header -->
  63. <TR class=FullHeight>
  64. <TD>
  65. <TABLE class=AllAvailableSpace cellspacing=0 cols=2 cellpadding=0>
  66. <TR>
  67. <!-- left pane -->
  68. <TD id=idLeftPane class=SecondaryPane>
  69. <DIV id=idLeftPaneContent class=FullHeight>
  70. <DIV id=idDescription style="margin-bottom:1em;display:none"></DIV>
  71. <DIV id=idRelatedTasks class=LearnAboutBox style="display:none">
  72. <DIV id=idRelatedTasksTitle class=LearnAboutCaption>Related Tasks</DIV>
  73. <DIV id=idRelatedTaskLinks class=LearnAboutBody></DIV>
  74. </DIV>
  75. <DIV id=idLearnAbout class=LearnAboutBox style="display:none">
  76. <DIV id=idLearnAboutTitle class=LearnAboutCaption>Learn About</DIV>
  77. <DIV id=idLearnAboutLinks class=LearnAboutBody></DIV>
  78. </DIV>
  79. </DIV>
  80. </TD>
  81. <!-- main pane -->
  82. <TD id=idContentCell class=AllAvailableSpace>
  83. <!-- Navigation within this application happens here. -->
  84. <IFRAME id=idContent
  85. class=AllAvailableSpace
  86. application=yes
  87. frameborder=0
  88. scrolling=no
  89. tabindex=0>
  90. </IFRAME>
  91. </TD>
  92. </TR>
  93. </TABLE>
  94. </TD>
  95. </TR>
  96. </TABLE>
  97. </BODY>
  98. </HTML>