mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-23 15:14:49 +01:00
Try to tell browser that autocomplete is not welcome in generate wallet (#1555)
fixes #1553
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
|
||||
<div class="form-group">
|
||||
<label asp-for="ExistingMnemonic">Existing Seed</label>
|
||||
<input type="text" asp-for="ExistingMnemonic" class="form-control"/>
|
||||
<input type="text" asp-for="ExistingMnemonic" class="form-control" autocomplete="off"/>
|
||||
<span asp-validation-for="ExistingMnemonic" class="text-danger"></span>
|
||||
<small class="form-text text-muted">
|
||||
You can choose to import an existing mnemonic seed phrase. If you leave blank, we will generate one for you.
|
||||
@@ -32,7 +32,7 @@
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="Passphrase">Passphrase (optional)</label>
|
||||
<input type="password" asp-for="Passphrase" class="form-control"/>
|
||||
<input type="password" asp-for="Passphrase" class="form-control" autocomplete="off"/>
|
||||
<span asp-validation-for="Passphrase" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
||||
Reference in New Issue
Block a user