401-Password Complexity Check Capability (#402)

* Added improved password complexity checking capability.

* Move password complexity checker as User.util
dynamically import required libraries depending on code execution flow
lint

* Ensure persistence of password requirements on restarts via env-dump
Copy example schema to docker env as well

---------

Co-authored-by: timothycarambat <rambat1010@gmail.com>
This commit is contained in:
pritchey
2023-12-05 12:13:06 -05:00
committed by GitHub
parent 7b30dd041b
commit 732d07829f
8 changed files with 128 additions and 6 deletions

View File

@@ -77,7 +77,6 @@ export default function EditUserModal({ currentUser, user }) {
type="text"
className="bg-zinc-900 border border-gray-500 text-white text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5"
placeholder={`${user.username}'s new password`}
minLength={8}
autoComplete="off"
/>
</div>