only digits are accepted in passwords
This commit is contained in:
parent
8c82b7c3f1
commit
1f01c50a9d
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ class BPBackend(BaseBackend, ICapBank):
|
||||||
LICENSE = 'AGPLv3+'
|
LICENSE = 'AGPLv3+'
|
||||||
DESCRIPTION = u'La Banque Postale French bank website'
|
DESCRIPTION = u'La Banque Postale French bank website'
|
||||||
CONFIG = BackendConfig(ValueBackendPassword('login', label='Account ID', masked=False),
|
CONFIG = BackendConfig(ValueBackendPassword('login', label='Account ID', masked=False),
|
||||||
ValueBackendPassword('password', label='Password'))
|
ValueBackendPassword('password', label='Password', regexp='^(\d+|)$'))
|
||||||
BROWSER = BPBrowser
|
BROWSER = BPBrowser
|
||||||
|
|
||||||
def create_default_browser(self):
|
def create_default_browser(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue