Revert "Hide password textbox if there is no password"

This reverts commit 009fa2f1b7.
pull/1730/head
Mcat12 6 years ago
parent c7219fbdff
commit 1a5c86d32e
No known key found for this signature in database
GPG Key ID: ABB8FC9789AF524D

@ -245,7 +245,6 @@ setHeader();
// Enable password input if necessary
if (!empty($svPasswd)) {
echo '$("#bpWLPassword").attr("placeholder", "Password");';
echo '$("#bpWLPassword").css("display", "inline-block");';
echo '$("#bpWLPassword").prop("disabled", false);';
}
}
@ -301,7 +300,7 @@ setHeader();
<form id="bpWLButtons" class="buttons">
<input id="bpWLDomain" type="text" value="<?=$serverName ?>" disabled/>
<input id="bpWLPassword" type="password" placeholder="<?=$wlPlaceHolder ?>" disabled style="display: none"/><button id="bpWhitelist" type="button" disabled></button>
<input id="bpWLPassword" type="password" placeholder="<?=$wlPlaceHolder ?>" disabled/><button id="bpWhitelist" type="button" disabled></button>
</form>
</div>
</main>

Loading…
Cancel
Save