Well... Here's something I created to prompt user for an ID and Password. It's made to be an Include. With the Constant PassBug=1 it can run as a Stand-alone, make it zero to use it as a include.
(* Filename: Password.inc
Here's a Form that Prompts the User to Enter a Logon UserID and a Password.
Entered Data are stored in the Constants: UserID and Password.

Version 1 - 9/21/05
*)
Constants
Password=NUL
UserID=NUL
//
PassBug=1 // Debug Value
End
Form GetWhat, Choose Which to Prompt user to Enter.
ed1=CheckBox:Enter a UserID?:True
ed2=CheckBox:Enter a Password?:True
End
Form GetID, Enter your Login ID
TmpID=EditBox:What's your Login UserID?:.
End
Form GetPW, Enter your Password
TmpPW=EditBox:What's your Password?:.
End
Procedure GetPW
IF SHOWFORM GetWhat
TimeStamp What was the Check Box for userID? ( GetWhat[ed1] )
TimeStamp What was the Check Box for Password? ( GetWhat[ed2] )
IF GetWhat[ed1] = True
IF SHOWFORM GetID
SetConst UserID,GetID[TmpID]
End
End
IF GetWhat[ed2] = True
IF SHOWFORM GetPW
SetConst Password,GetPW[TmpPW]
End
End
End
End
If $PassBug = 1
Call GetPW
Timestamp User ( $UserID ), Pass ( $Password )
End