18 lines
355 B
C++
18 lines
355 B
C++
/*
|
|
* File: Validator.h
|
|
* Description: Validates inputs like phone number, email, password
|
|
* Author: Trenser
|
|
* Created: 18-May-2026
|
|
*/
|
|
|
|
#pragma once
|
|
#include<string>
|
|
#include<algorithm>
|
|
#include<cctype>
|
|
|
|
namespace util
|
|
{
|
|
bool isPhoneNumberValid(const std::string&);
|
|
bool isEmailValid(const std::string&);
|
|
bool isPasswordValid(const std::string&);
|
|
} |