Authenticate.dfm 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. object AuthenticateForm: TAuthenticateForm
  2. Left = 304
  3. Top = 113
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_authenticate'
  6. BorderIcons = [biSystemMenu]
  7. BorderStyle = bsDialog
  8. Caption = 'AuthenticateForm'
  9. ClientHeight = 359
  10. ClientWidth = 375
  11. Color = clBtnFace
  12. Constraints.MinHeight = 200
  13. Constraints.MinWidth = 280
  14. ParentFont = True
  15. OldCreateOrder = False
  16. Position = poOwnerFormCenter
  17. OnResize = FormResize
  18. OnShow = FormShow
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object LogView: TListView
  22. Left = 0
  23. Top = 0
  24. Width = 375
  25. Height = 44
  26. Align = alClient
  27. Columns = <
  28. item
  29. Width = 100
  30. end>
  31. DoubleBuffered = True
  32. ReadOnly = True
  33. RowSelect = True
  34. ParentDoubleBuffered = False
  35. ShowColumnHeaders = False
  36. TabOrder = 0
  37. ViewStyle = vsReport
  38. end
  39. object PasswordPanel: TPanel
  40. Left = 0
  41. Top = 44
  42. Width = 375
  43. Height = 233
  44. Align = alBottom
  45. AutoSize = True
  46. BevelOuter = bvNone
  47. TabOrder = 1
  48. Visible = False
  49. object PromptEditPanel: TPanel
  50. Left = 0
  51. Top = 0
  52. Width = 375
  53. Height = 139
  54. Align = alTop
  55. BevelOuter = bvNone
  56. TabOrder = 0
  57. DesignSize = (
  58. 375
  59. 139)
  60. object InstructionsLabel: TLabel
  61. Left = 8
  62. Top = 8
  63. Width = 360
  64. Height = 39
  65. Anchors = [akLeft, akTop, akRight]
  66. AutoSize = False
  67. Caption =
  68. 'Instructions for authentication. Please fill in your credentials' +
  69. ' carefully. Enter all required information, including your sessi' +
  70. 'on username and session password.X'
  71. FocusControl = PromptEdit1
  72. WordWrap = True
  73. end
  74. object PromptLabel1: TLabel
  75. Left = 8
  76. Top = 56
  77. Width = 360
  78. Height = 13
  79. Anchors = [akLeft, akTop, akRight]
  80. AutoSize = False
  81. Caption = '&UsernameX:'
  82. FocusControl = PromptEdit1
  83. WordWrap = True
  84. end
  85. object PromptLabel2: TLabel
  86. Left = 8
  87. Top = 101
  88. Width = 360
  89. Height = 13
  90. Anchors = [akLeft, akTop, akRight]
  91. AutoSize = False
  92. Caption = '&PasswordX:'
  93. FocusControl = PromptEdit2
  94. WordWrap = True
  95. end
  96. object PromptEdit1: TPasswordEdit
  97. Left = 8
  98. Top = 73
  99. Width = 361
  100. Height = 21
  101. Anchors = [akLeft, akTop, akRight]
  102. MaxLength = 250
  103. TabOrder = 0
  104. end
  105. object PromptEdit2: TPasswordEdit
  106. Left = 8
  107. Top = 118
  108. Width = 361
  109. Height = 21
  110. Anchors = [akLeft, akTop, akRight]
  111. MaxLength = 250
  112. TabOrder = 1
  113. end
  114. end
  115. object SavePasswordPanel: TPanel
  116. Left = 0
  117. Top = 164
  118. Width = 375
  119. Height = 25
  120. Align = alTop
  121. BevelOuter = bvNone
  122. TabOrder = 2
  123. object SavePasswordCheck: TCheckBox
  124. Left = 14
  125. Top = 6
  126. Width = 275
  127. Height = 17
  128. Caption = '&Change stored password to this one'
  129. Checked = True
  130. State = cbChecked
  131. TabOrder = 0
  132. end
  133. end
  134. object ButtonsPanel: TPanel
  135. Left = 0
  136. Top = 189
  137. Width = 375
  138. Height = 44
  139. Align = alTop
  140. BevelOuter = bvNone
  141. TabOrder = 3
  142. DesignSize = (
  143. 375
  144. 44)
  145. object PasswordOKButton: TButton
  146. Left = 118
  147. Top = 8
  148. Width = 75
  149. Height = 25
  150. Anchors = [akTop, akRight]
  151. Caption = 'OK'
  152. ModalResult = 1
  153. TabOrder = 0
  154. end
  155. object PasswordCancelButton: TButton
  156. Left = 206
  157. Top = 8
  158. Width = 75
  159. Height = 25
  160. Anchors = [akTop, akRight]
  161. Caption = 'Cancel'
  162. ModalResult = 2
  163. TabOrder = 1
  164. end
  165. object PasswordHelpButton: TButton
  166. Left = 294
  167. Top = 8
  168. Width = 75
  169. Height = 25
  170. Anchors = [akTop, akRight]
  171. Caption = '&Help'
  172. TabOrder = 2
  173. OnClick = HelpButtonClick
  174. end
  175. end
  176. object SessionRememberPasswordPanel: TPanel
  177. Left = 0
  178. Top = 139
  179. Width = 375
  180. Height = 25
  181. Align = alTop
  182. BevelOuter = bvNone
  183. TabOrder = 1
  184. object SessionRememberPasswordCheck: TCheckBox
  185. Left = 14
  186. Top = 6
  187. Width = 275
  188. Height = 17
  189. Caption = '&Remember password for this session'
  190. Checked = True
  191. State = cbChecked
  192. TabOrder = 0
  193. end
  194. end
  195. end
  196. object BannerPanel: TPanel
  197. Left = 0
  198. Top = 277
  199. Width = 375
  200. Height = 82
  201. Align = alBottom
  202. BevelOuter = bvNone
  203. TabOrder = 2
  204. Visible = False
  205. DesignSize = (
  206. 375
  207. 82)
  208. object BannerMemo: TMemo
  209. Left = 8
  210. Top = 8
  211. Width = 360
  212. Height = 34
  213. Anchors = [akLeft, akTop, akRight, akBottom]
  214. Color = clBtnFace
  215. ReadOnly = True
  216. ScrollBars = ssVertical
  217. TabOrder = 0
  218. WantReturns = False
  219. end
  220. object NeverShowAgainCheck: TCheckBox
  221. Left = 15
  222. Top = 53
  223. Width = 188
  224. Height = 17
  225. Anchors = [akLeft, akRight, akBottom]
  226. Caption = '&Never show this banner again'
  227. TabOrder = 1
  228. end
  229. object BannerCloseButton: TButton
  230. Left = 206
  231. Top = 47
  232. Width = 75
  233. Height = 25
  234. Anchors = [akRight, akBottom]
  235. Caption = 'Continue'
  236. ModalResult = 1
  237. TabOrder = 2
  238. end
  239. object BannerHelpButton: TButton
  240. Left = 292
  241. Top = 47
  242. Width = 75
  243. Height = 25
  244. Anchors = [akRight, akBottom]
  245. Caption = '&Help'
  246. TabOrder = 3
  247. OnClick = HelpButtonClick
  248. end
  249. end
  250. end