Forms Pattern can i?

I created a form in webflow with a custom field called “linkedin link”, is there a way to force people to use the linkedin link instead of writing their name or use another link?

Even tho i used a place holder with linkedin.com/in and the link people are still writing their names haha

Thanks

Add two custom attributes to that URL input;

pattern = https?://(www\.)?linkedin\.com/in/.*
title = Must be your LinkedIn profile URL.

The first one describes the validation pattern you want to enforce as a regex. Adapt it as needed.

Make sure your placeholder indicates the format clearly, so they know.

The second one adds a message if they’ve entered a valid URL but it doesn’t match the pattern correctly.

1 Like