add a regexp on password field
This commit is contained in:
parent
13524cae32
commit
2a97ab0074
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ class LCLBackend(BaseBackend, ICapBank):
|
|||
DESCRIPTION = u'Le Crédit Lyonnais French bank website'
|
||||
LICENSE = 'AGPLv3+'
|
||||
CONFIG = BackendConfig(ValueBackendPassword('login', label='Account ID', regexp='^\d{1,6}\w$', masked=False),
|
||||
ValueBackendPassword('password', label='Password of account'),
|
||||
ValueBackendPassword('password', label='Password of account', regexp='^\d{6}$'),
|
||||
Value('agency', label='Agency code', regexp='^\d{3,4}$'))
|
||||
BROWSER = LCLBrowser
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue