7 Module implementing a custom widget indicating the strength of a password. |
7 Module implementing a custom widget indicating the strength of a password. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtWidgets import QProgressBar |
10 from PyQt6.QtWidgets import QProgressBar |
11 |
11 |
12 from eric7.Utilities.PasswordChecker import PasswordChecker, PasswordStrength |
12 from eric7.EricUtilities.EricPasswordChecker import PasswordChecker, PasswordStrength |
13 |
13 |
14 |
14 |
15 class EricPasswordMeter(QProgressBar): |
15 class EricPasswordMeter(QProgressBar): |
16 """ |
16 """ |
17 Class implementing a custom widget indicating the strength of a password. |
17 Class implementing a custom widget indicating the strength of a password. |