fix(frontend): missed a password prompt (#10065)

<!-- Clearly explain the need for these changes: -->
CASA requires a length of 12 passwords, which we did update. When
testing in dev, I realized I missed a few.

### Changes 🏗️

<!-- Concisely describe all of the changes made in this pull request:
-->
updates a missed prompt

### Checklist 📋

#### For code changes:
- [x] I have clearly listed my changes in the PR description
- [x] I have made a test plan
- [x] I have tested my changes according to the test plan:
  <!-- Put your test plan here: -->
  - [x] Test manually, and read all the prompts carefully
This commit is contained in:
Nicholas Tindle
2025-05-30 17:31:00 +01:00
committed by GitHub
parent 85e108a37a
commit 16d6f5377c
2 changed files with 2 additions and 2 deletions

View File

@@ -175,7 +175,7 @@ export default function ResetPasswordPage() {
<PasswordInput {...field} />
</FormControl>
<FormDescription className="text-sm font-normal leading-tight text-slate-500">
Password needs to be at least 6 characters long
Password needs to be at least 12 characters long
</FormDescription>
<FormMessage />
</FormItem>

View File

@@ -151,7 +151,7 @@ export default function SignupPage() {
<PasswordInput {...field} autoComplete="new-password" />
</FormControl>
<FormDescription className="text-sm font-normal leading-tight text-slate-500">
Password needs to be at least 6 characters long
Password needs to be at least 12 characters long
</FormDescription>
<FormMessage />
</FormItem>