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 Utilities.PasswordChecker import PasswordChecker |
12 from eric7.Utilities.PasswordChecker import PasswordChecker |
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. |