I want my users to be able to enter their webpage url when signing up.
Does lift have any built in support for url format validation?
Does lift have validation for urls?
136 Views Asked by Sam Backus At
2
There are 2 best solutions below
0

If your users have an HTML5 browser, you can use the SHtml.url
function to generate an input that is validated client-side. This relies on the HTML type="url"
attribute for an input and so is only supported in more modern browsers.
There is no server-side validation baked into Lift, but you can use any number of third party ones like Apache Commons or as @flavian mentioned, you can write your own.
AFAIK, no, but you can create a simple validation rule: