object LoginForm: TLoginForm Left = 0 Top = 0 Caption = 'DÜSK - Anmeldung' ClientHeight = 300 ClientWidth = 400 Position = poScreenCenter PixelsPerInch = 96 TextHeight = 13 OnCreate = FormCreate object lblTitle: TLabel Left = 80 Top = 30 Width = 240 Height = 25 Caption = 'DÜSK - Düsseldorfer Schülerinventar' Font.Style = [fsBold] Font.Size = 14 end object Label1: TLabel Left = 80 Top = 100 Width = 70 Height = 13 Caption = 'Benutzername:' end object Label2: TLabel Left = 80 Top = 140 Width = 50 Height = 13 Caption = 'Passwort:' end object edtUsername: TEdit Left = 160 Top = 97 Width = 150 Height = 21 Text = 'gast' end object edtPassword: TEdit Left = 160 Top = 137 Width = 150 Height = 21 PasswordChar = '*' Text = 'gast' end object btnLogin: TButton Left = 160 Top = 180 Width = 75 Height = 25 Caption = 'Anmelden' OnClick = btnLoginClick end object lblInfo: TLabel Left = 80 Top = 230 Width = 250 Height = 30 Caption = 'Server: paul-koop.org'#13#10'Benutzung mit gast/gast möglich' Font.Color = clGray Font.Size = 9 end end