Skip to content

Commit f103e88

Browse files
fix: remove autocomplete from password confirmation field to enable dual autofill
Password managers autofill both password fields when the confirmation field doesn't have autocomplete="new-password". This matches standard behavior on most websites. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 3d174da commit f103e88

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

templates/account/register.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,8 @@
4343
<!-- Confirm Password Input -->
4444
<div class="mb-3">
4545
<label for="confirm_password" class="form-label">Confirm Password</label>
46-
<input type="password" class="form-control" id="confirm_password" name="confirm_password"
47-
placeholder="Confirm your password" required
48-
autocomplete="new-password">
46+
<input type="password" class="form-control" id="confirm_password" name="confirm_password"
47+
placeholder="Confirm your password" required>
4948
<div class="invalid-feedback">
5049
Passwords do not match.
5150
</div>

0 commit comments

Comments
 (0)