fix: react-doctor → 64/100 — add sizes to 12 next/image, add htmlFor/id to 202 label/input pairs, add aria-label to 5 icon links

This commit is contained in:
Nora
2026-06-26 02:51:12 -06:00
parent 29d9d23a26
commit 33626620a0
53 changed files with 489 additions and 545 deletions
+4 -8
View File
@@ -96,10 +96,8 @@ export default function ResetPasswordPage() {
)}
<div>
<label className="block text-sm font-medium text-slate-700">
New Password
</label>
<input aria-label=". 8 Characters"
<label htmlFor="fld-1-new-password" className="block text-sm font-medium text-slate-700">New Password</label>
<input id="fld-1-new-password" aria-label=". 8 Characters"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
@@ -111,10 +109,8 @@ export default function ResetPasswordPage() {
</div>
<div>
<label className="block text-sm font-medium text-slate-700">
Confirm Password
</label>
<input aria-label="Repeat Password"
<label htmlFor="fld-2-confirm-password" className="block text-sm font-medium text-slate-700">Confirm Password</label>
<input id="fld-2-confirm-password" aria-label="Repeat Password"
type="password"
value={confirm}
onChange={(e) => setConfirm(e.target.value)}