Commit 684be349 authored by dev0tion's avatar dev0tion

Disabled strict password requirements

parent 0fce8e77
...@@ -41,9 +41,10 @@ export class CreateComponent implements OnInit { ...@@ -41,9 +41,10 @@ export class CreateComponent implements OnInit {
]) ])
], ],
"walletPassword": ["", "walletPassword": ["",
Validators.compose([ Validators.required,
Validators.required, // Validators.compose([
Validators.pattern(/^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{10,})/)]) // Validators.required,
// Validators.pattern(/^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{10,})/)])
], ],
"walletPasswordConfirmation": ["", Validators.required], "walletPasswordConfirmation": ["", Validators.required],
"selectNetwork": ["test", Validators.required] "selectNetwork": ["test", Validators.required]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment