Added a password rule engine

This commit is contained in:
TheXamlGuy
2024-06-09 13:10:57 +01:00
parent e8372f875f
commit 84e89e1c47
12 changed files with 199 additions and 4 deletions
+4
View File
@@ -719,6 +719,7 @@ public record ItemConfiguration
{
Label = "Type",
Values = ["American Express", "Discover", "Maestro", "Mastercard", "Visa"],
Width = 120
},
new MaskedTextEntryConfiguration
{
@@ -731,18 +732,21 @@ public record ItemConfiguration
Label = "Expiry Date",
Pattern = "00/00",
Value = "__/__",
Width = 120
},
new MaskedTextEntryConfiguration
{
Label = "Valid From",
Pattern = "00/00",
Value = "__/__",
Width = 120
},
new MaskedTextEntryConfiguration
{
Label = "Card verification code",
Pattern = "000",
Value = "___",
Width = 120
},
}
},