Dim userID As ABMInput
userID.Initialize(page,"userID",ABM.INPUT_TEXT,"Your ID:",False,"")
cont1.Cell(1,1).AddComponent(userID)
Dim userPswd As ABMInput
userPswd.Initialize(page,"userPswd",ABM.INPUT_PASSWORD,"Your Pswd:",False,"")
cont1.Cell(2,1).AddComponent(userPswd)
' note that this is Googles demo API key. Use your own!
myReCAPTCHA.Initialize(page, "myReCAPTCHA", "6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI")
cont1.Cell(3,1).AddComponent(myReCAPTCHA.ABMComp)
Dim btnLogin As ABMButton
btnLogin.InitializeRaised(page,"btnLogin","","","Sign in","")
btnLogin.UseFullCellWidth=True
btnLogin.Enabled=False
cont1.Cell(4,1).AddComponent(btnLogin)
page.Cell(6,1).AddComponent(cont1)