-
Notifications
You must be signed in to change notification settings - Fork 0
/
ockuserauthentication.lfm
52 lines (52 loc) · 1.08 KB
/
ockuserauthentication.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
object FormUserAuthentication: TFormUserAuthentication
Left = 671
Height = 240
Top = 246
Width = 471
Caption = 'User Authentication'
ClientHeight = 240
ClientWidth = 471
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '3.2.0.0'
object LabeledEditUser: TLabeledEdit
Left = 24
Height = 23
Top = 38
Width = 424
EditLabel.Height = 15
EditLabel.Width = 424
EditLabel.Caption = 'User'
TabOrder = 0
end
object LabeledEditPassword: TLabeledEdit
Left = 24
Height = 23
Top = 120
Width = 424
EchoMode = emPassword
EditLabel.Height = 15
EditLabel.Width = 424
EditLabel.Caption = 'Password'
PasswordChar = '*'
TabOrder = 1
end
object ButtonOK: TButton
Left = 24
Height = 25
Top = 184
Width = 75
Caption = 'OK'
TabOrder = 2
OnClick = ButtonOKClick
end
object ButtonCancel: TButton
Left = 373
Height = 25
Top = 184
Width = 75
Caption = 'Cancel'
TabOrder = 3
OnClick = ButtonCancelClick
end
end