www.pudn.com > Roulette.rar > ModifyPass.pas
unit ModifyPass;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;
type
TChangepassForm = class(TForm)
Button1: TButton;
Button2: TButton;
Label1: TLabel;
Label2: TLabel;
UserName: TEdit;
Password: TEdit;
Image1: TImage;
Label3: TLabel;
Changepassword2: TEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
ChangepassForm: TChangepassForm;
implementation
{$R *.dfm}
end.