Table Of Contents
Getting Started
How to use ExamEase
Change Log
Requirement
Setup & Configuration
Technical Information
Code Editing
FAQ
Credits
FAQ > How to change password validation?
Introduction
The password validation in the project is as below:
- has at least 6 characters
- include at least one uppercase letter
- include at least one lowercase letter
- include at least one digit
- include at least one symbol
Edit the validation code
- Open
/Models/Extensions.cs
in Visual Studio
- Go to
public class PasswordValidation
- Remove the validation code that you don’t want. You can change the error message too.