Skip to content

Commit 12515f3

Browse files
Use password input fields for password change form
1 parent c9d4d06 commit 12515f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/settings/ManageAccountModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export default function ManageAccountModal({
135135
<Form className="p-3">
136136
<Form.Group className="mb-3" controlId="editNewPassword">
137137
<Form.Control
138-
type="text"
138+
type="password"
139139
value={newPassword}
140140
onChange={(e) => setNewPassword(e.target.value)}
141141
placeholder="New Password"
@@ -144,7 +144,7 @@ export default function ManageAccountModal({
144144
</Form.Group>
145145
<Form.Group controlId="editNewPasswordConfirm">
146146
<Form.Control
147-
type="text"
147+
type="password"
148148
value={newPasswordConfirm}
149149
onChange={(e) => setNewPasswordConfirm(e.target.value)}
150150
placeholder="Confirm New Password"

0 commit comments

Comments
 (0)