# Stolen from http://www.regular-expressions.info/email.html
errors.add(:email, "is not valid") unless email =~
/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i
# Stolen from http://www.regular-expressions.info/email.html
errors.add(:email, "is not valid") unless email =~
/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i
errors.add(:login, "should contain only letters, numbers, and spaces") unless login =~ /^[A-Za-z0-9 ]*$/
end
end
errors.add(:login, "should contain only letters, numbers, and spaces") unless login =~ /^[A-Za-z0-9 ]*$/
end
end