Password.dfm 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. object PasswordDialog: TPasswordDialog
  2. Left = 197
  3. Top = 77
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_password'
  6. ActiveControl = PasswordEdit
  7. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  8. BorderStyle = bsDialog
  9. Caption = 'Enter password'
  10. ClientHeight = 151
  11. ClientWidth = 404
  12. Color = clBtnFace
  13. ParentFont = True
  14. OldCreateOrder = True
  15. Position = poMainFormCenter
  16. DesignSize = (
  17. 404
  18. 151)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object OKButton: TButton
  22. Left = 147
  23. Top = 119
  24. Width = 75
  25. Height = 25
  26. Anchors = [akRight, akBottom]
  27. Caption = 'OK'
  28. Default = True
  29. ModalResult = 1
  30. TabOrder = 2
  31. end
  32. object CancelButton: TButton
  33. Left = 235
  34. Top = 119
  35. Width = 75
  36. Height = 25
  37. Anchors = [akRight, akBottom]
  38. Cancel = True
  39. Caption = 'Cancel'
  40. ModalResult = 2
  41. TabOrder = 3
  42. end
  43. object PasswordPanel: TPanel
  44. Left = 0
  45. Top = 0
  46. Width = 404
  47. Height = 50
  48. Align = alTop
  49. BevelOuter = bvNone
  50. TabOrder = 0
  51. DesignSize = (
  52. 404
  53. 50)
  54. object PasswordLabel: TStaticText
  55. Left = 8
  56. Top = 8
  57. Width = 389
  58. Height = 13
  59. Anchors = [akLeft, akTop, akRight]
  60. AutoSize = False
  61. Caption = '&Password:'
  62. FocusControl = PasswordEdit
  63. TabOrder = 0
  64. end
  65. object PasswordEdit: TPasswordEdit
  66. Left = 8
  67. Top = 24
  68. Width = 390
  69. Height = 21
  70. Anchors = [akLeft, akTop, akRight]
  71. MaxLength = 250
  72. TabOrder = 1
  73. end
  74. end
  75. object ServerPromptPanel: TPanel
  76. Left = 0
  77. Top = 50
  78. Width = 404
  79. Height = 69
  80. Align = alTop
  81. BevelOuter = bvNone
  82. TabOrder = 1
  83. DesignSize = (
  84. 404
  85. 69)
  86. object ServerPromptLabel: TLabel
  87. Left = 8
  88. Top = 24
  89. Width = 388
  90. Height = 44
  91. Anchors = [akLeft, akTop, akRight, akBottom]
  92. AutoSize = False
  93. Caption =
  94. 'Note: This prompt is issued by the server. It is part of either ' +
  95. 'keyboard-interactive, TIS or Cryptocard authentication.'
  96. WordWrap = True
  97. end
  98. object HideTypingCheck: TCheckBox
  99. Left = 14
  100. Top = 2
  101. Width = 275
  102. Height = 17
  103. Caption = 'Hide &typing'
  104. Checked = True
  105. State = cbChecked
  106. TabOrder = 0
  107. OnClick = HideTypingCheckClick
  108. end
  109. end
  110. object HelpButton: TButton
  111. Left = 323
  112. Top = 119
  113. Width = 75
  114. Height = 25
  115. Anchors = [akRight, akBottom]
  116. Caption = '&Help'
  117. TabOrder = 4
  118. OnClick = HelpButtonClick
  119. end
  120. end