I have a field set up for a URL. I want to make sure the user enters 'http://' or 'https://' at the beginning of the URL. If not I want an error message to show, I've tried this but for some reason it only work is only 'http://' or 'https://' is entered. Anything after that it fails. What am I missing?
If(!IsMatch(TXT_BaseURL.Text,"^https?://.+"),Notify("Invalid URL: URL should start with 'https://' or 'http://'",NotificationType.Error))