| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- object PasswordDialog: TPasswordDialog
- Left = 390
- Top = 251
- BorderStyle = bsDialog
- Caption = 'Enter password'
- ClientHeight = 151
- ClientWidth = 300
- Color = clBtnFace
- ParentFont = True
- OldCreateOrder = True
- Position = poScreenCenter
- DesignSize = (
- 300
- 151)
- PixelsPerInch = 96
- TextHeight = 13
- object OKButton: TButton
- Left = 131
- Top = 119
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'OK'
- Default = True
- ModalResult = 1
- TabOrder = 2
- end
- object CancelButton: TButton
- Left = 219
- Top = 119
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 3
- end
- object PasswordPanel: TPanel
- Left = 0
- Top = 0
- Width = 300
- Height = 50
- Align = alTop
- BevelOuter = bvNone
- TabOrder = 0
- DesignSize = (
- 300
- 50)
- object PasswordLabel: TLabel
- Left = 8
- Top = 8
- Width = 280
- Height = 13
- Anchors = [akLeft, akTop, akRight]
- AutoSize = False
- Caption = '&Password:'
- FocusControl = PasswordEdit
- end
- object PasswordEdit: TPasswordEdit
- Left = 8
- Top = 24
- Width = 286
- Height = 21
- Anchors = [akLeft, akTop, akRight]
- MaxLength = 250
- TabOrder = 0
- end
- end
- object ServerPromptPanel: TPanel
- Left = 0
- Top = 50
- Width = 300
- Height = 69
- Align = alTop
- BevelOuter = bvNone
- TabOrder = 1
- DesignSize = (
- 300
- 69)
- object ServerPromptLabel: TLabel
- Left = 8
- Top = 24
- Width = 284
- Height = 44
- Anchors = [akLeft, akTop, akRight, akBottom]
- AutoSize = False
- Caption =
- 'Note: This prompt is issued by the server. It is part of either ' +
- 'keyboard-interactive, TIS or Cryptocard authentication.'
- WordWrap = True
- end
- object HideTypingCheck: TCheckBox
- Left = 14
- Top = 2
- Width = 275
- Height = 17
- Caption = '&Hide typing'
- Checked = True
- State = cbChecked
- TabOrder = 0
- OnClick = HideTypingCheckClick
- end
- end
- end
|