mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-17 13:07:34 +02:00
feat: do not autocomplete password when creating wallet (#38)
This commit is contained in:
parent
5f1d6e97f8
commit
0db76d99dd
1 changed files with 7 additions and 1 deletions
|
|
@ -96,7 +96,13 @@ export default function CreateWallet({ currentWallet, startWallet }) {
|
|||
</rb.Form.Group>
|
||||
<rb.Form.Group className="mb-3" controlId="password">
|
||||
<rb.Form.Label>Password</rb.Form.Label>
|
||||
<rb.Form.Control name="password" type="password" style={{ maxWidth: '20em' }} required />
|
||||
<rb.Form.Control
|
||||
name="password"
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
style={{ maxWidth: '20em' }}
|
||||
required
|
||||
/>
|
||||
<rb.Form.Control.Feedback type="invalid">Please set a password.</rb.Form.Control.Feedback>
|
||||
</rb.Form.Group>
|
||||
<rb.Button variant="dark" type="submit" disabled={isCreating}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue