}
default: {
try {
+ document.getElementById('wallet-new').classList.add('hide')
+ document.getElementById('wallet-import').classList.add('hide')
+ document.querySelector(location.hash).classList.remove('hide')
await reloadAccountSelect()
document.getElementById('account').value = ''
} catch (err) {
const algorithm = document.getElementById(`${id}-algorithm-select`)
const typeContainer = document.getElementById(`${id}-type`)
const type = document.getElementById(`${id}-type-select`)
+ const importValueContainer = document.getElementById(`${id}-value`)
+ const importValue = document.getElementById(`${id}-value-input`)
+ const importValueLabel = document.getElementById(`${id}-value-label`)
const saltContainer = document.getElementById(`${id}-salt`)
const salt = document.getElementById(`${id}-salt-input`)
- if (algorithm.value === 'bip44' && type?.value !== 'seed') {
+ if (algorithm.value === 'bip44' && type?.value === 'mnemonic') {
saltContainer.classList.remove('hide')
} else {
saltContainer.classList.add('hide')
}
- const importValue = document.getElementById(`${id}-value-input`)
- const importValueLabel = document.querySelector(`${id}-value label`)
+ if (type?.value != null && type?.value !== '') {
+ importValueContainer.classList.remove('hide')
+ }
if (importValueLabel) {
- importValueLabel.innerText = type.value
+ importValueLabel.textContent = type.value
}
}
const accountOptions = accounts.map(a => {
return { text: a.name, value: a.index }
})
+ resetQrCode()
await resetSelectOptions('account', accountOptions)
}
const account = document.getElementById('account')
if (wallet.value === '' || account.value.substring(0, 1) === '_') {
account.value = ''
+ resetQrCode()
}
}
h1 {
text-align: center;
}
- hr {
- border: 10px solid var(--theme-content) !important;
- height: 10px !important;
- }
label {
margin-right: 0.5em;
}
<h1>New Wallet</h1>
<div class="flex-y stretch">
<div id="wallet-new-name" class="flex-x left mid">
- <label for="wallet-new-name-input">Name</label>
+ <label id="wallet-new-name-label" for="wallet-new-name-input">Name</label>
<input id="wallet-new-name-input" name="wallet-new-name" autocomplete="off" maxlength="80" pattern="[^_].*"
placeholder="My Wallet" />
</div>
<div id="wallet-new-algorithm" class="flex-x left mid">
- <label for="wallet-new-algorithm-select">Algorithm</label>
+ <label id="wallet-new-algorithm-label" for="wallet-new-algorithm-select">Algorithm</label>
<select id="wallet-new-algorithm-select" name="wallet-new-algorithm" autocomplete="off"
onchange="updateWalletForm('wallet-new')" required>
<option disabled selected value>Choose...</option>
</select>
</div>
<div id="wallet-new-salt" class="flex-x left mid hide">
- <label for="wallet-new-salt-input">Salt</label>
+ <label id="wallet-new-salt-label" for="wallet-new-salt-input">Salt</label>
<input id="wallet-new-salt-input" name="wallet-new-salt" type="password" autocomplete="off"
placeholder="Optional" />
</div>
<div id="wallet-new-password" class="flex-x left mid">
- <label for="wallet-new-password-input">Lock</label>
+ <label id="wallet-new-password-label" for="wallet-new-password-input">Lock</label>
<input id="wallet-new-password-input" name="wallet-new-password" type="password" autocomplete="off"
placeholder="Password" required />
</div>
<h1>Import Wallet</h1>
<div class="flex-y stretch">
<div id="wallet-import-name" class="flex-x left mid">
- <label for="wallet-import-name-input">Name</label>
+ <label id="wallet-import-name-label" for="wallet-import-name-input">Name</label>
<input id="wallet-import-name-input" name="wallet-import-name" autocomplete="off" maxlength="80"
pattern="[^_].*" placeholder="My Wallet" />
</div>
<div id="wallet-import-algorithm" class="flex-x left mid">
- <label for="wallet-import-algorithm-select">Algorithm</label>
+ <label id="wallet-import-algorithm-label" for="wallet-import-algorithm-select">Algorithm</label>
<select id="wallet-import-algorithm-select" name="wallet-import-algorithm" autocomplete="off"
onchange="updateWalletForm('wallet-import')" required>
<option disabled selected value>Choose...</option>
<option value="blake2b">BLAKE2b</option>
</select>
</div>
- <div id="wallet-import-type" class="flex-x left mid hide">
- <label for="wallet-import-type-select">Type</label>
+ <div id="wallet-import-type" class="flex-x left mid">
+ <label id="wallet-import-type-label" for="wallet-import-type-select">Type</label>
<select id="wallet-import-type-select" name="wallet-import-type" autocomplete="off"
onchange="updateWalletForm('wallet-import')" required>
<option disabled selected value>Choose...</option>
</select>
</div>
<div id="wallet-import-value" class="flex-x left mid hide">
- <label for="wallet-import-value-input" style="text-transform:capitalize"></label>
+ <label id="wallet-import-value-label" for="wallet-import-value-input"
+ style="text-transform:capitalize"></label>
<input id="wallet-import-value-input" name="wallet-import-value" type="password" autocomplete="off"
- placeholder="Password" required />
+ placeholder="" required />
</div>
<div id="wallet-import-salt" class="flex-x left mid hide">
- <label for="wallet-import-salt-input">Salt</label>
+ <label id="wallet-import-salt-label" for="wallet-import-salt-input">Salt</label>
<input id="wallet-import-salt-input" name="wallet-import-salt" type="password" autocomplete="off"
placeholder="Optional" />
</div>
<div id="wallet-import-password" class="flex-x left mid">
- <label for="wallet-import-password-input">Lock</label>
+ <label id="wallet-import-password-label" for="wallet-import-password-input">Lock</label>
<input id="wallet-import-password-input" name="wallet-import-password" type="password" autocomplete="off"
placeholder="Password" required />
</div>
<h1>New Account</h1>
<div class="flex-y stretch">
<div id="account-new-name" class="flex-x left mid">
- <label for="account-new-name-input">Name</label>
+ <label id="account-new-name-label" for="account-new-name-input">Name</label>
<input id="account-new-name-input" name="account-new-name" autocomplete="off" maxlength="80" pattern="[^_].*"
placeholder="My Account" />
</div>
<div id="account-new-index" class="flex-x left mid">
- <label for="account-new-index-input">Index</label>
+ <label id="account-new-index-label" for="account-new-index-input">Index</label>
<input id="account-new-index-input" name="account-new-index" type="number" autocomplete="off" min="0"
max="2147483647" required value="0" />
</div>
<div id="account-new-password" class="flex-x left mid">
- <label for="account-new-password-input">Unlock</label>
+ <label id="account-new-password-label" for="account-new-password-input">Unlock</label>
<input id="account-new-password-input" name="account-new-password" autocomplete="off" type="password"
placeholder="Password" required />
</div>