diff --git a/CHANGELOG.md b/CHANGELOG.md
index a0668aa..e9962dd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,17 @@ All notable changes to React Form Input Validation APIs will be documented in th
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
+## [2.0.3] - 07/08/2020
+
+### Fixed
+
+- Fixed Confirm password not working issue - [#19](https://github.com/gokulakannant/react-form-input-validation/issues/19)
+
+### Modified
+
+- Reduced the package size with webpack configurations.
+- Performance optimization
+
## [2.0.1] - 25/11/2019
### Fixed
diff --git a/README.md b/README.md
index 2a04787..db32cb2 100644
--- a/README.md
+++ b/README.md
@@ -17,6 +17,7 @@ A customized [validatorjs](https://www.npmjs.com/package/validatorjs) library to
* Compatible with libraries like [Material UI](https://material-ui.com/), and etc.
* Readable and declarative validation rules which is inspired by laravel framework.
* Error messages with multilingual support.
+* Handy to manage multiple forms in same page.
## Installation
@@ -170,7 +171,7 @@ The input types button, submit, reset, hidden are exceptional from the above lis
## Versions
-Latest Version: 2.0.2. For more versions refer [VERSIONS.md](VERSIONS.md).
+Latest Version: 2.0.3. For more versions refer [VERSIONS.md](VERSIONS.md).
## Changelog
diff --git a/demo/.gitignore b/demo/.gitignore
new file mode 100644
index 0000000..da592f8
--- /dev/null
+++ b/demo/.gitignore
@@ -0,0 +1,3 @@
+node_modules
+.DS_Store
+dist
diff --git a/example/src/Form.css b/demo/app/Form.css
similarity index 100%
rename from example/src/Form.css
rename to demo/app/Form.css
diff --git a/example/src/Form.js b/demo/app/Form.js
similarity index 87%
rename from example/src/Form.js
rename to demo/app/Form.js
index d2b7dad..05d860c 100644
--- a/example/src/Form.js
+++ b/demo/app/Form.js
@@ -9,6 +9,8 @@ class ValidationForm extends React.Component {
fields: {
customer_name: "",
email_address: "",
+ password: "",
+ password_confirmation: "",
phone_number: "",
pickup_time: "",
taxi: "",
@@ -23,6 +25,8 @@ class ValidationForm extends React.Component {
this.form.useRules({
customer_name: "required|username_available",
email_address: "required|email",
+ password: "required|confirmed",
+ password_confirmation: "required|same:password",
phone_number: "required|numeric|digits_between:10,12",
pickup_time: "required|date",
taxi: "required",
@@ -119,6 +123,42 @@ class ValidationForm extends React.Component {
+
+
+
+
+
+
+
+
+
+