-- Valid Test Login ( Username Luis and Password abc123 )

function button_login_onRelease(event)
  _If (_Get_Text(textfield_username)~="Luis") or (_Get_Text(textfield_password)~="abc123") _Then
    _Msgbox("","Invalid Credentials")
  _Else
    _Msgbox("","Login OK")
    _Goto("1p")
  _End_If
end