This commit is contained in:
2024-06-18 16:52:52 +02:00
parent 252fe7ce44
commit 056aceaaaa
46 changed files with 6791 additions and 1407 deletions

View File

@@ -16,7 +16,7 @@
<title>Globaly - Full Cycle Business Management & Consulting Responsive WordPress Theme</title>
<style>
.fa-solid{
.fa-solid {
position: absolute;
right: 3%;
top: 46%;
@@ -73,9 +73,8 @@
}
@media screen and (min-width: 768px) {
.fa-solid{
.fa-solid {
top: 46%;
}
#pswd_info {
@@ -86,10 +85,11 @@
@media screen and (min-width: 992px) {
.fa-solid{
.fa-solid {
top: 45%;
}
#pswd_info {
bottom: 15%;
@@ -228,23 +228,19 @@
// Toggle Password show
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
$("#togglePassword").click(function() {
const passwordInput = $("#password");
const type = passwordInput.attr("type");
const passwordInput = $("#password");
const type = passwordInput.attr("type");
if (type === "password") {
passwordInput.attr("type", "text");
$("#togglePassword").removeClass("fa-solid fa-eye-slash").addClass("fa-solid fa-eye");
} else {
passwordInput.attr("type", "password");
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
}
if (type === "password") {
passwordInput.attr("type", "text");
$("#togglePassword").removeClass("fa-solid fa-eye-slash").addClass("fa-solid fa-eye");
} else {
passwordInput.attr("type", "password");
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
}
});
});
</script>
</body>
</html>