Password.dfm 2.2 KB

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