mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-08 20:22:45 +01:00
Merge pull request #686 from shikhar-scs/hidePassword
Hide password while Typing and after Entering: Fixes #670
This commit is contained in:
commit
7b96c46e39
@ -12,7 +12,23 @@ function passwordComplete(state, password) {
|
||||
password: '<pre></pre>'
|
||||
})}</div>`
|
||||
]);
|
||||
el.lastElementChild.textContent = password;
|
||||
const displayPassword = [];
|
||||
for (let i = 0; i < password.length; i++) {
|
||||
displayPassword[i] = '●';
|
||||
}
|
||||
|
||||
const passwordOriginal = document.createElement('div');
|
||||
passwordOriginal.className = 'passwordOriginal';
|
||||
passwordOriginal.innerText = password;
|
||||
|
||||
const passwordStar = document.createElement('div');
|
||||
passwordStar.className = 'passwordStar';
|
||||
passwordStar.innerText = displayPassword
|
||||
.toString()
|
||||
.split(',')
|
||||
.join('');
|
||||
el.lastElementChild.appendChild(passwordOriginal);
|
||||
el.lastElementChild.appendChild(passwordStar);
|
||||
return el;
|
||||
}
|
||||
|
||||
|
@ -5,9 +5,7 @@ module.exports = function(state, emit) {
|
||||
const div = html`
|
||||
<div class="selectPassword">
|
||||
<div id="addPasswordWrapper">
|
||||
<input id="addPassword" type="checkbox" autocomplete="off" onchange=${
|
||||
togglePasswordInput
|
||||
}/>
|
||||
<input id="addPassword" type="checkbox" autocomplete="off" onchange=${togglePasswordInput}/>
|
||||
<label for="addPassword">
|
||||
${state.translate('requirePasswordCheckbox')}</label>
|
||||
</div>
|
||||
@ -17,6 +15,7 @@ module.exports = function(state, emit) {
|
||||
maxlength="64"
|
||||
autocomplete="off"
|
||||
placeholder="${state.translate('unlockInputPlaceholder')}"
|
||||
type="password"
|
||||
oninput=${inputChanged}/>
|
||||
<input type="submit"
|
||||
id="unlock-btn"
|
||||
|
@ -666,6 +666,18 @@ tbody {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.passwordOriginal {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.selectPassword :hover .passwordOriginal {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.selectPassword :hover .passwordStar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.setPassword {
|
||||
align-self: left;
|
||||
display: flex;
|
||||
|
Loading…
Reference in New Issue
Block a user