1c22c14f32
<UserStory> AUTH002 : Reset Initial Password </UserStory>
<Changes>
- Added logic for resetting initial password
- Code Cleanup
</Changes>
<Review>
Smitha Mohan
</Review>
11 lines
215 B
C++
11 lines
215 B
C++
#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&);
|
|
} |