Try to tell browser that autocomplete is not welcome in generate wallet (#1555)

fixes #1553
This commit is contained in:
Andrew Camilleri
2020-05-07 14:41:37 +02:00
committed by GitHub
parent 137c3ef2ce
commit ba02372d13

View File

@@ -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">