I have my Username Regular Expression (PCRE) set up to require a first and last name via the following:
^[A-Z][a-zA-Z]+[\s][A-Z][a-zA-Z]+$
However, the prompt still says, "Please enter the name by which you would like to log-in and be known on this site."
I would like it to read, "Please enter you real First and Last name."
Where would I change this?
Thanks,
Shawn
^[A-Z][a-zA-Z]+[\s][A-Z][a-zA-Z]+$
However, the prompt still says, "Please enter the name by which you would like to log-in and be known on this site."
I would like it to read, "Please enter you real First and Last name."
Where would I change this?
Thanks,
Shawn
Comment