Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Show passphrase input label (#6992)
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGoncalves8 committed Oct 22, 2021
1 parent 1f5d8a9 commit 12ad01d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ limitations under the License.
width: 300px;
border: 1px solid $accent-color;
border-radius: 5px;
padding: 10px;
}

.mx_AccessSecretStorageDialog_recoveryKeyEntry {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,15 +346,15 @@ export default class AccessSecretStorageDialog extends React.PureComponent<IProp
) }</p>

<form className="mx_AccessSecretStorageDialog_primaryContainer" onSubmit={this.onPassPhraseNext}>
<input
type="password"
<Field
id="mx_passPhraseInput"
className="mx_AccessSecretStorageDialog_passPhraseInput"
onChange={this.onPassPhraseChange}
type="password"
label={_t("Security Phrase")}
value={this.state.passPhrase}
onChange={this.onPassPhraseChange}
autoFocus={true}
autoComplete="new-password"
placeholder={_t("Security Phrase")}
/>
{ keyStatus }
<DialogButtons
Expand Down

0 comments on commit 12ad01d

Please sign in to comment.