Files
lms/ui/common/EmailValidator.hpp
T
2014-07-30 14:32:46 +02:00

11 lines
232 B
C++

#include <Wt/WRegExpValidator>
namespace UserInterface {
static inline Wt::WValidator *createEmailValidator()
{
return new Wt::WRegExpValidator("[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}");
}
} // namespace UserInterface