We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 54902c4 + 2f269fa commit a51fa6cCopy full SHA for a51fa6c
1 file changed
client/deis.py
@@ -574,6 +574,10 @@ def auth_register(self, args):
574
password = args.get('--password')
575
if not password:
576
password = getpass('password: ')
577
+ confirm = getpass('password (confirm): ')
578
+ if password != confirm:
579
+ print('Password mispatch, aborting registration.')
580
+ return False
581
email = args.get('--email')
582
if not email:
583
email = raw_input('email: ')
0 commit comments